📄 cutenews_indexphp_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: Exoduks <exoduks@gmail.com> ## This script is released under the GNU GPLv2if(description){ script_id(14665); script_cve_id("CVE-2004-1659"); script_bugtraq_id(11097); script_version ("$Revision: 38 $"); name["english"] = "CuteNews index.php XSS"; script_name(english:name["english"]); desc["english"] = "Synopsis : The remote web server contains a PHP script that is prone tocross-site scripting attacks. Description :The version of CuteNews installed on the remote host is vulnerable toa cross-site-scripting (XSS) attack. An attacker, exploiting thisflaw, would need to be able to coerce a user to browse to apurposefully malicious URI. Upon successful exploitation, theattacker would be able to run code within the web-browser in thesecurity context of the CuteNews server. See also : http://marc.theaimsgroup.com/?l=bugtraq&m=109415338521881&w=2Solution : Upgrade to the latest version.Risk factor :Low / CVSS Base Score : 2 (AV:R/AC:H/Au:NR/C:P/A:N/I:N/B:N)"; script_description(english:desc["english"]); summary["english"] = "Checks for the presence of index.php"; script_summary(english:summary["english"]); script_category(ACT_ATTACK); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); family["english"] = "CGI abuses : XSS"; script_family(english:family["english"]); script_dependencie("cutenews_detect.nasl", "cross_site_scripting.nasl"); script_require_ports("Services/www", 80); exit(0);}## The script code starts here#include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);if(!get_port_state(port)) exit(0);if(!can_host_php(port:port)) exit(0);# Test an install.install = get_kb_item(string("www/", port, "/cutenews"));if (isnull(install)) exit(0);matches = eregmatch(string:install, pattern:"^(.+) under (/.*)$");if (!isnull(matches)) { loc = matches[2]; req = http_get(item:string(loc, "/index.php?mod=<script>foo</script>"), port:port); r = http_keepalive_send_recv(port:port, data:req, bodyonly:1); if( r == NULL ) exit(0); if(egrep(pattern:"<script>foo</script>", string:r)) { security_note(port); exit(0); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -