global _start _start: ;need file descriptor for stdout xor rax,rax mov al, 59 ;syscall number execve mov rbx, '/bin/sh' push rbx mov rdi, rsp syscall