The remote host has a web-based vulnerability manager installed. McAfee Vulnerability Manager, a web-based vulnerability manager, is installed on the remote host
Source | Link |
---|---|
mcafee | www.mcafee.com/us/products/vulnerability-manager.aspx |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(65737);
script_version("1.9");
script_set_attribute(attribute:"plugin_modification_date", value:"2020/09/22");
script_xref(name:"IAVT", value:"0001-T-0857");
script_name(english:"McAfee Vulnerability Manager Detect");
script_summary(english:"Checks for McAfee Vulnerability Manager");
script_set_attribute(attribute:"synopsis", value:
"The remote host has a web-based vulnerability manager installed.");
script_set_attribute(attribute:"description", value:
"McAfee Vulnerability Manager, a web-based vulnerability manager, is
installed on the remote host.");
script_set_attribute(attribute:"see_also", value:"http://www.mcafee.com/us/products/vulnerability-manager.aspx");
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/03/29");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:mcafee:vulnerability_manager");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2013-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("http_version.nasl");
script_require_ports("Services/www", 80);
exit(0);
}
include("global_settings.inc");
include("audit.inc");
include("misc_func.inc");
include("http.inc");
include("webapp_func.inc");
port = get_http_port(default:80);
display_name = 'McAfee Vulnerability Manager';
res = http_send_recv3(method:"GET", item:"/index.exp", port:port, follow_redirect:2, exit_on_fail:TRUE);
if ('<title>McAfee Vulnerability Manager - Login</title>' >< res[2])
{
ver = NULL;
if ('All rights reserved. Version ' >< res[2])
{
match = eregmatch(string:res[2], pattern:'All rights reserved. Version ([0-9\\.]+)');
if (match) ver = match[1];
}
installs = add_install(
dir:'/',
ver:ver,
appname:'mcafee_vulnerability_manager',
port:port,
cpe: "cpe:/a:mcafee:vulnerability_manager"
);
if (report_verbosity > 0)
{
report = get_install_report(
display_name:display_name,
installs:installs,
port:port
);
security_note(port:port, extra:report);
}
else security_note(port);
exit(0);
}
else audit(AUDIT_WEB_APP_NOT_INST, display_name, port);
Transform Your Security Services
Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.
Book a live demo