📄 moodle_sql_inject.nasl
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr>## Ref: Moodle Team## This script is released under the GNU GPL v2#if (description){ script_id(15639); script_cve_id("CVE-2004-1424", "CVE-2004-1425", "CVE-2004-2232"); script_bugtraq_id(11608, 11691, 12120); if (defined_func("script_xref")) { script_xref(name:"OSVDB", value:"11427"); } script_version("$Revision: 38 $"); script_name(english:"Moodle SQL injection flaws"); desc["english"] = "The remote host is running a version of the Moodle suite, an open-sourcecourse management system written in PHP, which is older than version 1.4.3.The remote version of this software is vulnerable to SQL injection issue in 'glossary' module due to a lack of user input sanitization.Solution : Upgrade to Moodle 1.4.3 or later.Risk factor : High"; script_description(english:desc["english"]); script_summary(english:"Determines if Moodle is older than 1.4.3"); script_category(ACT_GATHER_INFO); script_family(english:"CGI abuses", francais:"Abus de CGI"); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); script_dependencie("moodle_detect.nasl"); script_require_ports("Services/www", 80); exit(0);}include("http_func.inc");port = get_http_port(default:80);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, "/moodle"));if (isnull(install)) exit(0);matches = eregmatch(string:install, pattern:"^(.+) under (/.*)$");if (!isnull(matches)) { ver = matches[1]; if (ver =~ "^(0\..*|1\.([0-4][^0-9]?|[0-4]\.[012][^0-9]?))$") { security_hole(port); exit(0); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -