sip_status_server.nasl

来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 41 行

NASL
41
字号
if(description){ script_id(11945); script_version("$Revision: 38 $");#script_cve_id("CVE-MAP-NOMATCH"); name["english"] = "sxdesign SIPd Status Server Detection"; script_name(english:name["english"]);  desc["english"] = "A SIP status server is running on this port.An attacker may use the remote status information of this server tocollect sensitive information such as server version, emails, and ip addresses (internal and external).Solution: Access to this port should be restricted to trusted users onlyRisk Factor: Low"; script_description(english:desc["english"]); summary["english"] = "SIP Status Server Detection"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO);  script_copyright(english:"This script is Copyright (C) 2003 Noam Rathaus"); family["english"] = "Misc."; script_family(english:family["english"]); script_dependencie("find_service.nes", "http_version.nasl"); script_require_ports("Services/www", 6050); exit(0);}include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:6050);if(!port)exit(0);res = http_get_cache(item:"/", port:port);if ( res == NULL ) exit(0);if ("SIP Server Status" >< res && "Server Version" >< res) security_note(port);

⌨️ 快捷键说明

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