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

📄 novell_novonyx_default_files.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by David Kyger <david_kyger@symantec.com>## See the Nessus Scripts License for details#if(description){  script_id(12049);  script_cve_id("CVE-2002-1634");  script_bugtraq_id(4874);  script_version ("$Revision: 38 $"); name["english"] = "Default Novonyx Web Server Files"; script_name(english:name["english"]);  desc["english"] = "Novell Netware default Novonyx web server files.A default installation of Novell 5.x will install the Novonyx web server. Numerous web server files included with this installation could reveal system information.Solution : Delete the default pagesRisk factor : Medium";   script_description(english:desc["english"]);  summary["english"] = "Checks for default Novonyx web server files";  script_summary(english:summary["english"]);  script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Kyger"); family["english"] = "Netware"; script_family(english:family["english"]); script_dependencie("find_service.nes", "http_version.nasl"); script_require_ports("Services/www", 80); exit(0);}## The script code starts here#include("http_func.inc");include("http_keepalive.inc");flag = 0;warning = string("A default installation of Novell 5.x will install the Novonyx web server. Numerous web server files included with this installation could reveal system information.  The following Novonyx web server files were found on the server:");port = get_http_port(default:80);if(get_port_state(port)) {   pat1 = "NetBasic WebPro Demo";   pat2 = "Novell";   pat3 = "ScriptEase:WSE";   pat4 = "ALLFIELD.JSE";   pat5 = "LAN Boards";   pat6 = "Media Type";   pat7 = "Login to NDS";   pat8 = "Total Space";   pat9 = "Free Space";   pat10 = "SERVER_SOFTWARE";   pat11 = "GATEWAY_INTERFACE";   pat12 = "ADMSERV_ROOT";   pat13 = "ADMSERV_PWD";   pat14 = "Directory Listing Tool";   pat15 = "Server Name";   pat16 = "Source directory";   pat17 = "secure directories sys";   fl[0] = "/netbasic/websinfo.bas";   fl[1] = "/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/misc/allfield.jse";   fl[2] = "/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/misc/test.jse";   fl[3] = "/perl/samples/lancgi.pl";   fl[4] = "/perl/samples/ndslogin.pl";   fl[5] = "/perl/samples/volscgi.pl";   fl[6] = "/perl/samples/env.pl";   fl[7] = "/nsn/env.bas";   fl[8] = "/nsn/fdir.bas";    for(i=0;fl[i];i=i+1)    {     req = http_get(item:fl[i], port:port);    buf = http_keepalive_send_recv(port:port, data:req);    if ( buf == NULL ) exit(0);    if ((pat1 >< buf && pat2 >< buf) || (pat3 >< buf && pat4 >< buf) || (pat5 >< buf && pat6 >< buf) || (pat7 >< buf && pat2 >< buf) || (pat8 >< buf && pat9 >< buf) || (pat10 >< buf && pat11 >< buf) || (pat12 >< buf && pat13 >< buf) || (pat14 >< buf && pat15 >< buf) || (pat16 >< buf && pat17 >< buf)) {        warning = warning + string("\n", fl[i]);         flag = 1;        }   }    if (flag > 0) {	warning += string("\n\nSolution : If not required, remove all default Novonyx web server files\n");        warning += string("Risk factor : Medium");        security_warning(port:port, data:warning);        } else {          exit(0);        }}

⌨️ 快捷键说明

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