Lucene search

K
nessusThis script is Copyright (C) 2002-2022 Matt MooreORACLE9I_JAVA_PROCESS_MANAGER.NASL
HistoryFeb 07, 2002 - 12:00 a.m.

Oracle 9iAS Java Process Manager /oprocmgr-status Anonymous Process Manipulation

2002-02-0700:00:00
This script is Copyright (C) 2002-2022 Matt Moore
www.tenable.com
170

The remote host is an Oracle 9iAS server. By default, accessing the location /oprocmgr-status via HTTP lets an attacker obtain the list of processes running on the remote host, and even to to start or stop them.

#%NASL_MIN_LEVEL 70300
#
# This script was written by Matt Moore <[email protected]>
#
# Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
#      Erik Anderson <[email protected]>
#      Added BugtraqID and CAN
#
# See the Nessus Scripts License for details
#

# Changes by Tenable:
# - Revised plugin title (6/10/09)

include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(10851);
  script_version("1.27");
  script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");

  script_cve_id("CVE-2002-0563");
  script_bugtraq_id(4293);

  script_name(english:"Oracle 9iAS Java Process Manager /oprocmgr-status Anonymous Process Manipulation");

  script_set_attribute(attribute:"synopsis", value:
"It is possible to obtain the list of Java processes running on the
remote host anonymously, as well as to start and stop them.");
  script_set_attribute(attribute:"description", value:
"The remote host is an Oracle 9iAS server. By default, accessing
the location /oprocmgr-status via HTTP lets an attacker obtain
the list of processes running on the remote host, and even to
to start or stop them.");
  # http://web.archive.org/web/20030407050036/http://otn.oracle.com/deploy/security/pdf/ias_modplsql_alert.pdf
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?80fe4531");
  script_set_attribute(attribute:"solution", value:
"Restrict access to /oprocmgr-status in httpd.conf");
  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_cwe_id(287);

  script_set_attribute(attribute:"vuln_publication_date", value:"2002/02/06");
  script_set_attribute(attribute:"patch_publication_date", value:"2002/02/06");
  script_set_attribute(attribute:"plugin_publication_date", value:"2002/02/07");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:oracle:application_server");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:oracle:application_server_web_cache");
  script_set_attribute(attribute:"thorough_tests", value:"true");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Databases");

  script_copyright(english:"This script is Copyright (C) 2002-2022 Matt Moore");

  script_dependencies("find_service1.nasl", "http_version.nasl");
  script_require_keys("www/OracleApache");
  script_require_ports("Services/www", 80);

  exit(0);
}

# Check starts here

include("http_func.inc");
include("global_settings.inc");

port = get_http_port(default:80, embedded:TRUE);


if(get_port_state(port))
{ 
# Make a request for /oprocmgr-status

 req = http_get(item:"/oprocmgr-status", port:port);
 soc = http_open_socket(port);
 if(soc)
 {
 send(socket:soc, data:req);
 r = http_recv(socket:soc);
 http_close_socket(soc);
 if("Module Name" >< r)	
 	security_warning(port);

 }
}
VendorProductVersionCPE
oracleapplication_servercpe:/a:oracle:application_server
oracleapplication_server_web_cachecpe:/a:oracle:application_server_web_cache
Related for ORACLE9I_JAVA_PROCESS_MANAGER.NASL