Enjoy.
#
# This script was written by Thomas Reinke <[EMAIL PROTECTED]>
#
# See the Nessus Scripts License for details
#

if(description)
{
 script_id(11135);
 script_version ("$");
 name["english"] = "W32.Bugbear Detect";
 script_name(english:name["english"]);
 
 desc["english"] = "
The remote host appears to be infected with the W32.Bugbear
virus. This virus includes a trojan that allows users to
remotely control your system. It also propagates itself by
using email addresses in your address book, includes a keystroke
logger, and attempts to disable security software such as
firewalls and Anti-Virus software.

Solution: Use an Anti-Virus package to remove it.
http://www.sophos.com/virusinfo/analyses/w32bugbeara.html

Risk factor : Critical";

 script_description(english:desc["english"]);
 
 summary["english"] = "W32.Bugbear Detect";
 script_summary(english:summary["english"]);
 
 script_category(ACT_GATHER_INFO);
 
 script_copyright(english:"This script is Copyright (C) 2002 E-Soft Inc.");
 family["english"] = "Backdoors";
 script_family(english:family["english"]);
 script_require_ports(36794);
 exit(0);
}

#
# The script code starts here
#

if (get_port_state(36794))
{
 soc = open_sock_tcp(36794);

 if (soc)
 {
  security_hole(port:36794, protocol:"tcp");
 }
 close(soc);
}

Reply via email to