📄 sitescope_web_admin_server.nasl
字号:
## Copyright 2001 by Noam Rathaus <noamr@securiteam.com>## See the Nessus Scripts License for details##if(description){ script_id(10741); #script_cve_id("CVE-MAP-NOMATCH"); script_version ("$Revision: 38 $"); name["english"] = "SiteScope Web Administration Server Detection"; script_name(english:name["english"]); desc["english"] = "The remote web server is running the SiteScope Administration web server. This server enables attackers to configure your SiteScope product (Firewall monitoring program) if they gain access to a valid authentication username and password or to gain valid usernames and passwords usinga brute force attack.Solution: Disable the SiteScope Administration web server if it is unnecessary,or block incoming traffic to this port.Risk factor : Low"; script_description(english:desc["english"]); summary["english"] = "SiteScope Web Administration Server Detect"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2001 SecuriTeam"); family["english"] = "General"; script_family(english:family["english"]); script_dependencie("find_service.nes"); script_require_ports("Services/www", 2525); exit(0);}## The script code starts here#include("http_func.inc");include("http_keepalive.inc");include("misc_func.inc");ports = add_port_in_list(list:get_kb_list("Services/www"), port:2525);foreach port (ports){ buf = http_get_cache(item:"/", port:port); if (("401 Unauthorized" >< buf) && ("WWW-Authenticate: BASIC realm=" >< buf) && ("SiteScope Administrator" >< buf)) security_warning(port:port);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -