bits 64 global _start _start: ; we place /bin/sh and a few zero bytes at the start (16B) db '/bin/sh', 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 times 0x1f0 nop ; fill buffer, i.e., 512B in total ; TODO: complete me from here