| Source | Link |
|---|---|
| mapquest | www.mapquest.com/toolbar |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(12016);
script_version("1.12");
script_set_attribute(attribute:"plugin_modification_date", value:"2022/02/01");
script_name(english:"MapQuest Toolbar Detection");
script_summary(english:"MAPQUEST TOOLBAR detection");
script_set_attribute(attribute:"synopsis", value:"The remote host has a toolbar application installed.");
script_set_attribute(attribute:"description", value:
"The remote host is using the MapQuest Toolbar program. You should
ensure that the user intended to install this software.");
script_set_attribute(attribute:"see_also", value:"http://www.mapquest.com/toolbar");
script_set_attribute(attribute:"solution", value:"Uninstall this software if it does not match your corporate policy");
script_set_attribute(attribute:"risk_factor", value:"None");
script_set_attribute(attribute:"plugin_publication_date", value:"2004/01/15");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"x-cpe:/a:mapquest:mapquest_toolbar");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_set_attribute(attribute:"agent", value:"windows");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_copyright(english:"This script is Copyright (C) 2004-2022 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_family(english:"Windows");
script_dependencies("smb_hotfixes.nasl");
script_require_keys("SMB/Registry/Enumerated");
script_require_ports(139, 445);
exit(0);
}
# start the script
include("audit.inc");
include("smb_func.inc");
if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
path[0] = "software\classes\clsid\{4e7bd74f-2b8d-469e-a3fa-f363b384b77d}";
path[1] = "software\microsoft\internet explorer\toolbar\{4e7bd74f-2b8d-469e-a3fa-f363b384b77d}";
port = kb_smb_transport();
login = kb_smb_login();
pass = kb_smb_password();
domain = kb_smb_domain();
if(! smb_session_init()) audit(AUDIT_FN_FAIL, 'smb_session_init');
r = NetUseAdd(login:login, password:pass, domain:domain, share:"IPC$");
if ( r != 1 )
{
NetUseDel();
audit(AUDIT_SHARE_FAIL,"IPC$");
}
handle = RegConnectRegistry(hkey:HKEY_LOCAL_MACHINE);
if ( isnull(handle) )
{
NetUseDel();
audit(AUDIT_REG_FAIL);
}
for (i=0; path[i]; i++) {
key_h = RegOpenKey(handle:handle, key:path[i], mode:MAXIMUM_ALLOWED);
if ( !isnull(key_h) )
{
RegCloseKey(handle:key_h);
RegCloseKey(handle:handle);
security_note(kb_smb_transport());
NetUseDel();
exit(0);
}
}
RegCloseKey(handle:handle);
NetUseDel();
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