oracle_xsql.nasl

来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 60 行

NASL
60
字号
## This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>## See the Nessus Scripts License for details#if(description){ script_id(10594); script_bugtraq_id(2295); script_version ("$Revision: 38 $"); script_cve_id("CVE-2001-0126"); name["english"] = "Oracle XSQL Stylesheet Vulnerability"; name["francais"] = "Oracle XSQL Stylesheet Vulnerability"; script_name(english:name["english"], francais:name["francais"]);  desc["english"] = "The Oracle XSQL Servlet allows arbitrary Java code to be executed by an attacker by supplying the URL of a malicious XSLT stylesheet when making a request to an XSQL page.Solution: Until Oracle changes the default behavior for the XSQL servlet to disallow client supplied stylesheets, you can workaround this problem as follows. Add allow-client-style='no' on the document element of every xsql page on your server.This plug-in tests for this vulnerability using a sample page, airport.xsql, which is supplied with the Oracle XSQL servlet. Sample code should always be removed from production servers.Risk factor : High"; script_description(english:desc["english"]);  summary["english"] = "Tests for Oracle XSQL Stylesheet Vulnerability";  script_summary(english:summary["english"]);  script_category(ACT_ATTACK);  script_copyright(english:"This script is Copyright (C) 2000 Matt Moore",		francais:"Ce script est Copyright (C) 2000 Matt Moore"); family["english"] = "CGI abuses"; family["francais"] = "Abus de CGI"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "no404.nasl"); script_require_ports("Services/www", 80); exit(0);}# Check starts here# Check uses a default sample page supplied with the XSQL servlet. include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if(get_port_state(port)){  req = http_get(item:"/xsql/demo/airport/airport.xsql?xml-stylesheet=none", port:port); r = http_keepalive_send_recv(port:port, data:req); if("cvsroot" >< r)	 	security_hole(port);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?