Advertisement
Guest User

Untitled

a guest
Nov 20th, 2011
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. section .text
  2. global _start
  3. _start:
  4.  
  5.     jmp short zend
  6.    
  7.     zstart:
  8.     pop ecx
  9.     xor eax,eax
  10.  
  11.     mov eax, 4
  12.     mov ebx, 1
  13.     mov edx, 17
  14.     int 0x80        ;sys_write(stdout [ebx], const char* [ecx], unsigned int len [edx]);
  15.    
  16.     mov eax, 1
  17.     mov ebx, 0
  18.     int 0x80        ;sys_exit([ebx]);
  19.    
  20.     zend:
  21.     call zstart
  22.     db '/bin/shNAAAABBBB'
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement