mercora_imradio_installed.nasl

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

NASL
45
字号
## Josh Zlatin-Amishav GPLv2## if (description) {  script_id(19585);  script_version("$Revision: 1323 $");  name["english"] = "Mercora IMRadio Detection";  script_name(english:name["english"]);   desc["english"] = "Mercora IMRadio is installed on the remote host.  Mercora is an Internetradio tuner that also provides music sharing, instant messaging, chat,and forum capabilities.  This software may not be suitable for use in abusiness environment. See also : http://www.mercora.com/default2.aspRisk Factor : Low";  script_description(english:desc["english"]);   summary["english"] = "Checks for Mercora IMRadio";  script_summary(english:summary["english"]);   script_category(ACT_GATHER_INFO);  script_family(english:"Peer-To-Peer File Sharing");  script_copyright(english:"This script is Copyright (C) 2005 Josh Zlatin-Amishav");  script_dependencies("secpod_reg_enum.nasl");  script_require_keys("SMB/Registry/Enumerated");  script_require_ports(139, 445);  exit(0);}if (!get_kb_item("SMB/Registry/Enumerated")) exit(1);# Look in the registry for evidence of Mercora.key = "SMB/Registry/HKLM/SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/Mercora/DisplayName";if (get_kb_item(key)) security_note(port);

⌨️ 快捷键说明

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