# # (C) Tenable Network Security # if (description) { script_id(11743); script_bugtraq_id(7898, 7901); script_name(english:"Post-Nuke Multiple XSS"); desc["english"] = " The remote host is running a version of Post-Nuke which is vulnerable to various Cross-Site Scripting attacks. An attacker may use these flaws to steal the cookies of the legitimate users of this web site. Solution : Upgrade to the latest version of postnuke Risk factor : Low"; script_description(english:desc["english"]); script_summary(english:"Determines if post-nuke is vulnerable to XSS"); script_category(ACT_GATHER_INFO); script_family(english:"CGI abuses", francais:"Abus de CGI"); script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security"); script_dependencie("find_service.nes", "no404.nasl", "cross_site_scripting.nasl"); script_require_ports("Services/www", 80); exit(0); } 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); foreach dir (make_list("", "/post-nuke", "/pn", cgi_dirs())) { req = http_get(item:string(dir, "/modules.php?op=modload&name=FAQ&file=index&myfaq=yes&id_cat=1&categories=%3cimg%20src=javascript:foo;%3E&parent_id=0"), port:port); res = http_keepalive_send_recv(port:port, data:req); if(res == NULL ) exit(0); if("" >< res) { security_warning(port); exit(0); } }