📄 oracle9i_java_process_manager.nasl
字号:
## This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>## Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com># Erik Anderson <eanders@carmichaelsecurity.com># Added BugtraqID and CAN## See the Nessus Scripts License for details#if(description){ script_id(10851); script_bugtraq_id(4293); script_version("$Revision: 38 $"); script_cve_id("CVE-2002-0563"); name["english"] = "Oracle 9iAS Java Process Manager"; name["francais"] = "Oracle 9iAS Java Process Manager"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = "Synopsis :It is possible to obtain the list of Java processes running on theremote host anonymously, as well as to start and stop them.Description :The remote host is an Oracle 9iAS server. By default, accessingthe location /oprocmgr-status via HTTP lets an attacker obtainthe list of processes running on the remote host, and even toto start or stop them.Solution : Restrict access to /oprocmgr-status in httpd.confRisk factor :High / CVSS Base Score : 7 (AV:R/AC:L/Au:NR/C:P/A:P/I:P/B:N)"; script_description(english:desc["english"]); summary["english"] = "Tests for Oracle9iAS Java Process Manager"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2002 Matt Moore", francais:"Ce script est Copyright (C) 2002 Matt Moore"); family["english"] = "CGI abuses"; family["francais"] = "Abus de CGI"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "http_version.nasl"); script_require_ports("Services/www", 80); script_require_keys("www/OracleApache"); exit(0);}# Check starts hereinclude("http_func.inc");port = get_http_port(default:80);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_hole(port); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -