📄 ncacn_http.nasl
字号:
## This script was written by Georges Dagousset <georges.dagousset@alert4web.com>## See the Nessus Scripts License for details#if(description){ script_id(10761); script_version ("$Revision: 38 $"); name["english"] = "Detect CIS ports"; script_name(english:name["english"]); desc["english"] = "This detects the CIS ports by connecting to the server andprocessing the buffer received.CIS (COM+ Internet Services) are RPC over HTTP tunnelingand requires IIS to operate.CIS ports shouldn't be visible on internet but only behind a firewall.If you do not use this service, then disable it as it may becomea security threat in the future, if a vulnerability is discovered.Solution:Disable CIS with DCOMCNFG or protect CIS ports by a Firewall.http://support.microsoft.com/support/kb/articles/Q282/2/61.ASPFor more information about CIS:http://msdn.microsoft.com/library/en-us/dndcom/html/cis.aspRisk factor : Low"; script_description(english:desc["english"]); summary["english"] = "Detect banner with ncacn_http"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2001 Alert4Web.com"); family["english"] = "Windows"; script_family(english:family["english"]); script_dependencie("find_service.nes"); script_require_ports("Services/ncacn_http"); exit(0);}## The script code starts here#port = get_kb_item("Services/ncacn_http");if (!port)exit(0);key = string("ncacn_http/banner/", port);banner = get_kb_item(key);if(banner){ data = string("There is a CIS (COM+ Internet Services) on this port\nServer banner :\n", banner); security_warning(port:port, data:data);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -