⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 apache_win32_dir_trav.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
# This script was quicky written by Michel Arboi <arboi@alussinan.org># starting from badblue_directory_traversal.nasl by SecurITeam.## GPL## Reference# From:"Auriemma Luigi" <aluigi@pivx.com># To:bugtraq@securityfocus.com# Subject: Apache 2.0.39 directory traversal and path disclosure bug# Date: Fri, 16 Aug 2002 17:01:29 +0000if(description){ script_id(11092); script_bugtraq_id(5434); script_version("$Revision: 116 $"); script_cve_id("CVE-2002-0661"); name["english"] = "Apache 2.0.39 Win32 directory traversal"; script_name(english:name["english"]);  desc["english"] = "A security vulnerability in Apache 2.0.39 on Windows systemsallows attackers to access files that would otherwise be inaccessible using a directory traversal attack.A cracker may use this to read sensitive files or even executeany command on your system.Solutions: 	- Upgrade to Apache 2.0.40	- or install it on a Unix machine	- or add in your httpd.conf, before the first 	  'Alias' or 'Redirect' directive:	RedirectMatch 400 \\\.\.Risk factor : High"; script_description(english:desc["english"]);  summary["english"] = "Apache 2.0.39 Win32 directory traversal";  script_summary(english:summary["english"]);  script_category(ACT_GATHER_INFO);  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi"); family["english"] = "Web Servers"; script_family(english:family["english"]); script_dependencie("find_service.nes", "http_version.nasl"); script_require_ports("Services/www", 80); script_require_keys("www/apache"); exit(0);}# include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if (! get_port_state(port)) exit(0);if ( get_kb_item("Services/www/" + port + "/embedded") ) exit(0);banner = get_http_banner(port:port);if ( "Apache" >!< banner ) exit(0);cginameandpath[0] = "/error/%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cautoexec.bat";cginameandpath[1] = "/error/%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwinnt%5cwin.ini";cginameandpath[2] = "/error/%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cboot.ini";cginameandpath[3] = "";for (i = 0; cginameandpath[i]; i = i + 1){   u = cginameandpath[i];  if(check_win_dir_trav(port: port, url:u))  {    security_hole(port);    exit(0);  }}banner = get_http_banner(port: port);if (! banner) exit(0);if (egrep(string: banner, pattern:"^Server: *Apache(-AdvancedExtranetServer)?/2\.0\.[0-3][0-9]* *\(Win32\)")){  m = "A security vulnerability in Apache 2.0.39 on Windows systemsallows attackers to access files that would otherwise be inaccessible using a directory traversal attack.** OpenVAS found that your server should be vulnerable according to** its version number but could not exploit the flaw.** You may have already applied the RedirectMatch wordaround.** Anyway, you should upgrade your server to Apache 2.0.40Risk factor : None / High";  security_warning(port: port, data: m);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -