📄 phpbb_fetch_all_sql_injection.nasl
字号:
# This script was written by David Maciejak <david dot maciejak at kyxar dot fr># based on work from# (C) Tenable Network Security## This script is released under the GNU GPLv2if(description){ script_id(14226); script_bugtraq_id(10868, 10893); if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:"8353"); script_version("$Revision: 38 $"); name["english"] = "phpBB Fetch All < 2.0.12"; script_name(english:name["english"]); desc["english"] = "The remote host is running a version of phpBB FetchAll older than 2.0.12.It is reported that this version of phpBB Fetch All is susceptible to an SQL injection vulnerability. This issue is due to a failure ofthe application to properly sanitize user-supplied input before using it in an SQL query.The successful exploitation of this vulnerability depends on the implementation of the web application that includes phpBB Fetch All as a component. It may or may not be possible to effectively pass malicious SQL statements to the underlying function. Successful exploitation could result in compromise of the application, disclosure or modification of data or may permit an attacker to exploit vulnerabilities in the underlying database implementation.Solution : Upgrade to phpBB Fetch All 2.0.12 or laterRisk factor : High"; script_description(english:desc["english"]); summary["english"] = "Check for phpBB Fetch All version"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); family["english"] = "CGI abuses"; script_family(english:family["english"]); script_dependencie("phpbb_detect.nasl"); script_require_ports("Services/www", 80); exit(0);}# Check starts hereinclude("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if(!get_port_state(port)) exit(0);kb = get_kb_item("www/" + port + "/phpBB");if ( ! kb ) exit(0);matches = eregmatch(pattern:"(.*) under (.*)", string:kb);location = matches[2];req = http_get(item:location + "/index.php", port:port);res = http_keepalive_send_recv(port:port, data:req);if ( ! res ) exit(0);if ( ereg(pattern:"Fetch by phpBB Fetch All ([01]\..*|2\.0\.([0-9]|1[01])[^0-9])", string:version)) security_hole(port);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -