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

📄 citrix_find.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
# This script was written by John Lampe...j_lampe@bellsouth.net## See the Nessus Scripts License for details#if(description){ script_id(10942); script_bugtraq_id(7276); script_version("$Revision: 38 $"); name["english"] = "Check for a Citrix server"; script_name(english:name["english"]); desc["english"] = "A Citrix server is running on this machine.Citrix servers allow a Windows user to remotelyobtain a graphical login (and therefore act as a localuser on the remote host). NOTE: by default the Citrix Server application utilizes a weak 40 bit obfuscation algorithm (noteven a true encryption).  If the default settings havenot been changed, there already exists tools which canbe used to passively ferret userIDs and passwords as theytraverse a network.If this server is located within your DMZ, the risk issubstantially higher, as Citrix necessarily requiresaccess into the internal network for applications likeSMB browsing, file sharing, email synchronization, etc.If an attacker gains a valid login and password, he maybe able to use this service to gain further access onthe remote host or remote network. This protocol has alsobeen shown to be  vulnerable to a man-in-the-middle attack.Solution: Disable this service if you do not use it. Also, make surethat the server is configured to utilize strong encryption. Risk factor : Low"; script_description(english:desc["english"]); summary["english"] = "CITRIX check"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2002 John Lampe...j_lampe@bellsouth.net"); family["english"] = "Useless services"; script_family(english:family["english"]); script_require_ports(1494); exit(0);}## The script code starts here#function check_setting(port) { if(!get_port_state(port))exit(0); soc = open_sock_tcp(port); if(soc) {    r = recv(socket:soc, length:64);    if ((egrep(pattern:".*ICA.*", string:r))) {        security_note(port);    }    close(soc); }}port = 1494;check_setting(port:port);

⌨️ 快捷键说明

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