📄 apache_mod_include_priv_escalation.nasl
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># based on work from# (C) Tenable Network Security## Ref: Crazy Einstein## This script is released under the GNU GPL v2#if(description){ script_id(15554); script_bugtraq_id(11471); script_cve_id("CVE-2004-0940"); script_version("$Revision: 38 $"); name["english"] = "Apache mod_include priviledge escalation"; script_name(english:name["english"]); desc["english"] = "The remote web server appears to be running a version of Apache that is olderthan version 1.3.33.This version is vulnerable to a local buffer overflow in the get_tag()function of the module 'mod_include' when a specially crafted document with malformed server-side includes is requested though an HTTP session.Successful exploitation can lead to execution of arbitrary code with escalated privileges, but requires that server-side includes (SSI) is enabled.Solution: Disable SSI or upgrade to a newer version when available.Risk factor: Medium"; script_description(english:desc["english"]); summary["english"] = "Checks for version of Apache"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); family["english"] = "Misc."; script_family(english:family["english"]); script_dependencie("http_version.nasl", "os_fingerprint.nasl"); if ( defined_func("bn_random") ) script_dependencie("macosx_SecUpd20041202.nasl"); script_require_keys("www/apache"); script_require_ports("Services/www", 80); exit(0);}## The script code starts here#include("http_func.inc");include("backport.inc");include("global_settings.inc");if ( report_paranoia < 2 ) exit(0);if ( get_kb_item("CVE-2004-0940") ) exit(0);port = get_http_port(default:80);if(!port)exit(0);if(!get_port_state(port))exit(0);banner = get_backport_banner(banner:get_http_banner(port: port));if(!banner)exit(0);serv = strstr(banner, "Server");if(ereg(pattern:"^Server:.*Apache(-AdvancedExtranetServer)?/(1\.([0-2]\.|3\.([0-9][^0-9]|[0-2][0-9]|3[0-2])))", string:serv)) { security_warning(port); exit(0); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -