📄 basilix_arbitrary_command_execution.nasl
字号:
## This script was written by George A. Theall, <theall@tifaware.com>.## See the Nessus Scripts License for details.#if (description) { script_id(14304); script_version ("$Revision: 38 $"); script_bugtraq_id(3276); name["english"] = "BasiliX Arbitrary Command Execution Vulnerability"; script_name(english:name["english"]); desc["english"] = "Synopsis :The remote web server contains a PHP script that is prone to arbitrarycommand execution.Description :The remote host appears to be running a version of BasiliX between1.0.2beta or 1.0.3beta. In such versions, the script 'login.php3'fails to sanitize user input, which enables a remote attacker to passin a specially crafted value for the parameter 'username' witharbitrary commands to be executed on the target using the permissionsof the web server.See also : http://www.derkeiler.com/Mailing-Lists/securityfocus/bugtraq/2001-09/0017.htmlSolution : Upgrade to BasiliX version 1.1.0 or later.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"]); summary["english"] = "Checks for arbitrary command execution vulnerability in BasiliX"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_family(english:"CGI abuses"); script_copyright(english:"This script is Copyright (C) 2004 George A. Theall"); script_dependencies("basilix_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, "/basilix"));if (isnull(install)) exit(0);matches = eregmatch(string:install, pattern:"^(.+) under (/.*)$");if (!isnull(matches)) { ver = matches[1]; if (ver =~ "^1\.0\.[23]") { security_hole(port); exit(0); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -