Lucene search
K

McAfee WebShield Web UI Detection

🗓️ 03 Apr 2012 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 16 Views

McAfee WebShield Web UI Detection. The web interface for McAfee Email Gateway and McAfee Email and Web Security was detected

Refs
Code
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
  script_id(58581);
  script_version("1.9");
  script_set_attribute(attribute:"plugin_modification_date", value:"2020/09/22");

  script_xref(name:"IAVT", value:"0001-T-0856");

  script_name(english:"McAfee WebShield Web UI Detection");
  script_summary(english:"Looks for WebShield UI");

  script_set_attribute(
    attribute:"synopsis",
    value:
"The web interface for a security application was detected on the
remote host."
  );
  script_set_attribute(
    attribute:"description",
    value:
"WebShield Web UI (included with products such as McAfee Email Gateway
and McAfee Email and Web Security) was detected on the remote host."
  );
  script_set_attribute(attribute:"see_also", value:"http://www.mcafee.com/us/products/email-gateway.aspx");
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?5a45d4a2");
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_attribute(attribute:"risk_factor", value:"None");

  script_set_attribute(attribute:"plugin_publication_date", value:"2012/04/03");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:mcafee:webshield");
  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) 2012-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("http_version.nasl");
  script_require_ports("Services/www", 443, 10443);

  exit(0);
}

include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
include("webapp_func.inc");

port = get_http_port(default:10443);

install = NULL;
dirs = make_list(
  '/admin',   # MEG
  '/scmadmin' # EWS
);

pattern = '<title>(Email Gateway|McAfee Email Gateway|Email and Web Security)[^<0-9.]+([0-9.]+)?<';

foreach dir (dirs)
{
  page = dir + '/';
  res = http_send_recv3(method:'GET', item:page, follow_redirect:3, port:port, exit_on_fail:TRUE);
  match = eregmatch(string:res[2], pattern:pattern);

  if (isnull(match))
  {
    page = dir + '/LocalIndex.html';
    res = http_send_recv3(method:'GET', item:page, port:port, exit_on_fail:TRUE);
    match = eregmatch(string:res[2], pattern:pattern);
  }

  if (isnull(match))
    continue;

  if ('McAfee' >!< match[1])
    display_name = 'McAfee ' + match[1];
  else
    display_name = match[1];

  ver = match[2];
  install = add_install(appname:'mcafee_webshield', dir:dir, ver:ver, port:port, cpe: "cpe:/a:mcafee:webshield");

  if (report_verbosity > 0)
  {
    report = get_install_report(
      display_name:display_name,
      installs:install,
      item:'/',
      port:port
    );
    security_note(port:port, extra:report);
  }
  else security_note(port);

  exit(0);
  # never reached
}
audit(AUDIT_WEB_APP_NOT_INST, "McAfee WebShield Web UI", 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

22 Sep 2020 00:00Current
5.5Medium risk
Vulners AI Score5.5
16