📄 mambo_flaws.nasl
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># Released under the GNU GPL v2# Ref: Mindwarper <mindwarper at hush.com>#if (description){ script_id(16315); script_cve_id("CVE-2003-1204"); script_bugtraq_id(6571, 6572); if (defined_func("script_xref")) { script_xref(name:"OSVDB", value:"7495"); script_xref(name:"OSVDB", value:"7496"); script_xref(name:"OSVDB", value:"7497"); script_xref(name:"OSVDB", value:"7498"); script_xref(name:"OSVDB", value:"7499"); script_xref(name:"OSVDB", value:"7500"); script_xref(name:"OSVDB", value:"7501"); script_xref(name:"OSVDB", value:"7502"); script_xref(name:"OSVDB", value:"7503"); script_xref(name:"OSVDB", value:"7504"); script_xref(name:"OSVDB", value:"7505"); script_xref(name:"OSVDB", value:"7506"); script_xref(name:"OSVDB", value:"7507"); script_xref(name:"OSVDB", value:"7508"); } script_version ("$Revision: 38 $"); script_name(english:"Mambo Site Server XSS and remote arbitrary code execution"); desc["english"] = "An attacker may use the installed version of Mambo Site Server toperform a cross site scripting attack on this host or execute arbitrarycode through the gallery image uploader under the administratordirectory. See also : http://www.securityfocus.com/archive/1/306206Solution: Upgrade to the latest version of this software.Risk factor : Medium"; script_description(english:desc["english"]); script_summary(english:"Determine if Mambo Site Server is vulnerable to xss attack and remote flaw"); script_category(ACT_GATHER_INFO); script_family(english:"CGI abuses : XSS"); script_copyright(english:"This script is Copyright (C) 2005 David Maciejak"); script_dependencie("mambo_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);# Test an install.install = get_kb_item(string("www/", port, "/mambo_mos"));if (isnull(install)) exit(0);matches = eregmatch(string:install, pattern:"^(.+) under (/.*)$");if (!isnull(matches)) { dir = matches[2]; url = string(dir, "/themes/mambosimple.php?detection=detected&sitename=</title><script>foo</script>"); req = http_get(item:url, port:port); buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1); if( buf == NULL ) exit(0); if ( '<a href="?detection=detected&sitename=</title><script>foo</script>' >< buf ) security_warning(port);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -