# # This script was written by Matt Moore # # Script audit and contributions from Carmichael Security # Erik Anderson # Added BugtraqID # Also covers BugtraqID: 5194 (same Advisory ID#: wp-02-0008) # # See the Nessus Scripts License for details # if(description) { script_id(11041); script_version("$Revision$"); script_cve_id("CAN-2002-0682"); script_bugtraq_id(5193); name["english"] = "Apache Tomcat /servlet Cross Site Scripting"; name["francais"] = "Apache Tomcat /servlet Cross Site Scripting"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = "Apache Tomcat is the servlet container that is used in the official Reference Implementation for the Java Servlet and JavaServer Pages technologies. By using the /servlet/ mapping to invoke various servlets / classes it is possible to cause Tomcat to throw an exception, allowing XSS attacks,e.g: tomcat-server/servlet/org.apache.catalina.servlets.WebdavStatus/SCRIPTalert(document.domain)/SCRIPT tomcat-server/servlet/org.apache.catalina.ContainerServlet/SCRIPTalert(document.domain)/SCRIPT tomcat-server/servlet/org.apache.catalina.Context/SCRIPTalert(document.domain)/SCRIPT tomcat-server/servlet/org.apache.catalina.Globals/SCRIPTalert(document.domain)/SCRIPT (angle brackets omitted) Solution: The 'invoker' servlet (mapped to /servlet/), which executes anonymous servlet classes that have not been defined in a web.xml file should be unmapped. The entry for this can be found in the /tomcat-install-dir/conf/web.xml file. References: www.westpoint.ltd.uk/advisories/wp-02-0008.txt Risk factor : Low"; script_description(english:desc["english"]); summary["english"] = "Tests for Apache Tomcat /servlet XSS Bug"; 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", "no404.nasl", "http_version.nasl", "cross_site_scripting.nasl"); script_require_ports("Services/www", 80, 8080); script_require_keys("www/apache"); exit(0); } # Check starts here include("http_func.inc"); port = get_kb_item("Services/www"); if(!port)port = 8080; if(!get_port_state(port)) exit(0); if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0); req = http_get(item:"/servlet/org.apache.catalina.ContainerServlet/", port:port); soc = http_open_socket(port); if(soc) { send(socket:soc, data:req); r = http_recv(socket:soc); http_close_socket(soc); confirmed = string(""); confirmed_too = string("javax.servlet.ServletException"); if ((confirmed >< r) && (confirmed_too >< r)) security_warning(port); }