📄 sip_status_server.nasl
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -