# # This script was written by Matt Moore # # Script audit and contributions from Carmichael Security # Erik Anderson # Added BugtraqID and CAN # # See the Nessus Scripts License for details # if(description) { script_id(10960); script_version ("$Revision$"); script_cve_id("CVE-2002-0892"); script_bugtraq_id(4793); name["english"] = "ServletExec 4.1 ISAPI Physical Path Disclosure"; name["francais"] = "ServletExec 4.1 ISAPI Physical Path Disclosure"; script_name(english:name["english"], francais:name["francais"]); desc["english"] = " By requesting a non-existent .JSP file, or by invoking the JSPServlet directly and supplying no filename, it is possible to make the ServletExec ISAPI filter disclose the physical path of the webroot. Solution: Use the main ServletExec Admin UI to set a global error page for the entire ServletExec Virtual Server. References: www.westpoint.ltd.uk/advisories/wp-02-0006.txt Risk factor : Low"; script_description(english:desc["english"]); summary["english"] = "Tests for ServletExec 4.1 ISAPI Path Disclosure"; 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"); script_require_ports("Services/www", 80); exit(0); } # Check starts here include("http_func.inc"); port = get_kb_item("Services/www"); if(!port)port = 80; if(get_port_state(port)) { req = http_get(item:"/servlet/com.newatlanta.servletexec.JSP10Servlet", 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("newatlanta"); confirmedtoo = string("filename"); if ((confirmed >< r) && (confirmedtoo >