# # This script was written by Matt Moore # # See the Nessus Scripts License for details # if(description) { script_id(10594); script_version ("$Revision$"); script_cve_id("CVE-2001-0126"); script_bugtraq_id(2295); 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"); port = get_kb_item("Services/www"); if(!port)port = 80; if(get_port_state(port)) { req = http_get(item:"/xsql/demo/airport/airport.xsql?xml-stylesheet=none", port:port); soc = http_open_socket(port); if(soc) { send(socket:soc, data:req); r = http_recv(socket:soc); http_close_socket(soc); if("cvsroot" >< r) security_hole(port); } }