📄 postnuke_news_xss.nasl
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr>## based on work from# (C) Tenable Network Security## Ref: Muhammad Faisal Rauf Danka <mfrd@attitudex.com> - Gem Internet Services (Pvt) Ltd.## This script is released under the GNU GPLv2#if (description){ script_id(14727); script_bugtraq_id(5809); if (defined_func("script_xref")) script_xref(name:"OSVDB", value:"5499"); script_version("$Revision: 38 $"); script_name(english:"Post-Nuke News module XSS"); desc["english"] = "The remote host is running a version of Post-Nuke which containsthe 'News' module which itself is vulnerable to a cross sitescripting issue.An attacker may use these flaws to steal the cookies of thelegitimate users of this web site.Solution : Upgrade to the latest version of postnukeRisk factor : Medium"; 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 : XSS", francais:"Abus de CGI"); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); script_dependencie("postnuke_detect.nasl", "cross_site_scripting.nasl"); script_require_ports("Services/www", 80); exit(0);}include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if(!get_port_state(port))exit(0);if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);if(!can_host_php(port:port))exit(0);kb = get_kb_item("www/" + port + "/postnuke" );if ( ! kb ) exit(0);stuff = eregmatch(pattern:"(.*) under (.*)", string:kb );dir = stuff[2];req = http_get(item:string(dir, "/modules.php?op=modload&name=News&file=article&sid=<script>foo</script>"), port:port);res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE);if(res == NULL ) exit(0); if("<script>foo</script>" >< res) security_warning(port);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -