| Source | Link |
|---|---|
| adobe | www.adobe.com/products/robohelp-server.html |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(66315);
script_version("1.9");
script_set_attribute(attribute:"plugin_modification_date", value:"2023/02/06");
script_name(english:"Adobe RoboHelp Server Installed");
script_summary(english:"Checks if RHS is installed");
script_set_attribute(
attribute:"synopsis",
value:
"An application for managing web-based information is installed on the
remote Windows host."
);
script_set_attribute(
attribute:"description",
value:
"Adobe RoboHelp Server, used to manage web help systems and knowledge
bases, is installed on the remote host."
);
script_set_attribute(attribute:"see_also", value:"https://www.adobe.com/products/robohelp-server.html");
script_set_attribute(attribute:"solution", value:"n/a");
script_set_attribute(attribute:"risk_factor", value:"None");
script_set_attribute(attribute:"plugin_publication_date", value:"2013/05/04");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/a:adobe:robohelp_server");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_set_attribute(attribute:"asset_inventory_category", value:"software_enumeration");
script_set_attribute(attribute:"agent", value:"windows");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Windows");
script_copyright(english:"This script is Copyright (C) 2013-2023 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("smb_hotfixes.nasl");
script_require_keys("SMB/Registry/Enumerated");
script_require_ports(139, 445);
exit(0);
}
include("audit.inc");
include("smb_func.inc");
include("smb_hotfixes.inc");
include("smb_hotfixes_fcheck.inc");
include("smb_reg_query.inc");
include("misc_func.inc");
include("install_func.inc");
app = 'Adobe RoboHelp Server';
display_names = get_kb_list_or_exit('SMB/Registry/HKLM/SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/*/DisplayName');
installs = make_array(); # key - uninstall key, value = version (NULL if it couldn't be determined)
foreach key (keys(display_names))
{
name = display_names[key];
if (name !~ "^Adobe RoboHelp Server \d+(\s+[x|X]\d+)?$") continue;
version_key = key - 'DisplayName' + 'DisplayVersion';
uninstall_key = key - 'SMB/Registry/HKLM/' - 'DisplayName';
uninstall_key = str_replace(string:uninstall_key, find:'/', replace:"\");
installs[uninstall_key] = get_kb_item(version_key);
}
if (max_index(keys(installs)) == 0)
audit(AUDIT_NOT_INST, app);
registry_init();
hklm = registry_hive_connect(hive:HKEY_LOCAL_MACHINE, exit_on_fail:TRUE);
paths = make_array();
foreach key (keys(installs))
{
path = get_registry_value(handle:hklm, item:key + "DisplayIcon");
if (!isnull(path))
paths[path] = installs[key]; # key = path, value = version (NULL if it couldn't be determined)
}
RegCloseKey(handle:hklm);
if (max_index(keys(paths)) == 0)
{
close_registry();
audit(AUDIT_UNINST, app);
}
else
{
close_registry(close:FALSE);
}
installs = 0;
# the documentation says you can only have one version of RoboHelp Server
# installed at once, but it's possible more than one are still in the registry
# after the directory has been manually deleted
foreach file (keys(paths))
{
ver = paths[file];
if (hotfix_file_exists(path:file))
{
webinf = strstr(file, 'WEB-INF');
if (isnull(webinf)) # C:\program files\Adobe\Adobe RoboHelpServer 9\ARPRoboHelpServer.ico
{
dir ='';
parts = split(file, sep:"\", keep:TRUE);
for (i = 0; i < max_index(parts) - 1; i++)
dir += parts[i];
}
else # C:\program files\Adobe\Adobe RoboHelpServer 8\WEB-INF\AMT\ConfigMgr.exe
dir = file - webinf;
if (!isnull(ver))
{
set_kb_item(name:'SMB/Adobe_RoboHelp_Server/Version', value:ver); # expect this to just be a major version e.g., 8 or 9
}
set_kb_item(name:'SMB/Adobe_RoboHelp_Server/Path', value:dir);
register_install(
vendor:"Adobe",
product:"RoboHelp Server",
app_name:app,
path:dir,
version:ver,
cpe:"cpe:/a:adobe:robohelp_server");
installs += 1;
}
}
hotfix_check_fversion_end();
if (!installs)
audit(AUDIT_UNINST, app);
port = kb_smb_transport();
report_installs(app_name:app, port:port);
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation