📄 oracle9i_globals_dot_jsa.nasl
字号:
## This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>## See the Nessus Scripts License for details#if(description){ script_id(10850); script_bugtraq_id(4034); script_cve_id("CVE-2002-0562"); script_version("$Revision: 38 $"); name["english"] = "Oracle 9iAS Globals.jsa access"; name["francais"] = "Oracle 9iAS Globals.jsa access"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = "In the default configuration of Oracle9iAS, it is possible to make requests for the globals.jsa file for a given web application. These files should not be returned by the server as they often contain sensitive information.Solution: Edit httpd.conf to disallow access to *.jsa.References:http://www.nextgenss.com/advisories/orajsa.txthttp://www.oracle.comRisk factor : Medium"; script_description(english:desc["english"]); summary["english"] = "Tests for Oracle9iAS Globals.jsa access"; 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 one of the demo files .jsa files. This can be # improved to use the output of webmirror.nasl, allowing the plugin to# test for this problem in configurations where the demo files have# been removed. req = http_get(item:"/demo/ojspext/events/globals.jsa", port:port); soc = http_open_socket(port); if(soc) { send(socket:soc, data:req); r = http_recv(socket:soc); http_close_socket(soc); if("event:application_OnStart" >< r) security_warning(port); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -