# # This script was written by Renaud Deraison # # See the Nessus Scripts License for details # if(description) { script_id(11395); script_version ("$Revision$"); script_cve_id("CAN-2000-0746"); script_bugtraq_id(1594, 1595); name["english"] = "Microsoft Frontpage XSS"; script_name(english:name["english"]); desc["english"] = " The remote server is vulnerable to Cross-Site-Scripting (XSS) when the FrontPage CGI /_vti_bin/shtml.dll is fed with improper arguments. Solution : See http://www.microsoft.com/technet/security/bulletin/ms00-060.asp Risk factor : Medium"; script_description(english:desc["english"]); summary["english"] = "Checks for the presence of a Frontpage XSS"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison", francais:"Ce script est Copyright (C) 2003 Renaud Deraison"); 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); script_require_keys("www/iis"); exit(0); } # # The script code starts here # include("http_func.inc"); include("http_keepalive.inc"); port = get_kb_item("Services/www"); if(!port)port = 80; if(!get_port_state(port))exit(0); if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0); req = http_get(item:"/_vti_bin/shtml.exe/", port:port); res = http_keepalive_send_recv(port:port, data:req, bodyonly:1); if( res == NULL ) exit(0); if("" >< res)security_warning(port);