Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- section .text
- global _start
- _start:
- jmp short zend
- zstart:
- pop ecx
- xor eax,eax
- mov eax, 4
- mov ebx, 1
- mov edx, 17
- int 0x80 ;sys_write(stdout [ebx], const char* [ecx], unsigned int len [edx]);
- mov eax, 1
- mov ebx, 0
- int 0x80 ;sys_exit([ebx]);
- zend:
- call zstart
- db '/bin/shNAAAABBBB'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement