McAfee ePolicy Orchestrator < 4.6.7 Multiple XSS - Nessus

Medium   Plugin ID: 68933

This page contains detailed information about the McAfee ePolicy Orchestrator < 4.6.7 Multiple XSS Nessus plugin including available exploits and PoCs found on GitHub, in Metasploit or Exploit-DB for verifying of this vulnerability.

Plugin Overview


ID: 68933
Name: McAfee ePolicy Orchestrator < 4.6.7 Multiple XSS
Filename: mcafee_epo_kb78824.nasl
Vulnerability Published: 2013-07-12
This Plugin Published: 2013-07-17
Last Modification Time: 2021-01-19
Plugin Version: 1.10
Plugin Type: remote
Plugin Family: CGI abuses : XSS
Dependencies: mcafee_epo_app_server_detect.nasl
Required KB Items [?]: www/epo_app_server

Vulnerability Information


Severity: Medium
Vulnerability Published: 2013-07-12
Patch Published: N/A
CVE [?]: CVE-2013-4883
CPE [?]: cpe:/a:mcafee:epolicy_orchestrator

Synopsis

A security management application on the remote host has multiple cross-site scripting vulnerabilities.

Description

According to its self-reported version, the version of McAfee ePolicy Orchestrator (ePO) running on the remote host is 4.6.6 or earlier, and therefore, has multiple reflected cross-site scripting vulnerabilities. An attacker could exploit any of these issues by tricking a user into requesting a specially crafted URL, resulting in arbitrary script code execution.

Solution

There is no solution available at this time.

McAfee plans on fixing these vulnerabilities in ePO version 4.6.7, which is scheduled to be released in late Q3 2013.

Public Exploits


Target Network Port(s): N/A
Target Asset(s): N/A
Exploit Available: True (Exploit-DB)
Exploit Ease: No exploit is required

Here's the list of publicly known exploits and PoCs for verifying the McAfee ePolicy Orchestrator < 4.6.7 Multiple XSS vulnerability:

  1. Exploit-DB: exploits/windows/webapps/26807.txt
    [EDB-26807: McAfee ePO 4.6.6 - Multiple Vulnerabilities]

Before running any exploit against any system, make sure you are authorized by the owner of the target system(s) to perform such activity. In any other case, this would be considered as an illegal activity.

WARNING: Beware of using unverified exploits from sources such as GitHub or Exploit-DB. These exploits and PoCs could contain malware. For more information, see how to use exploits safely.

Risk Information


CVSS V2 Vector [?]: AV:N/AC:M/Au:N/C:N/I:P/A:N/E:H/RL:OF/RC:C
CVSS Base Score:4.3 (Medium)
Impact Subscore:2.9
Exploitability Subscore:8.6
CVSS Temporal Score:3.7 (Low)
CVSS Environmental Score:NA (None)
Modified Impact Subscore:NA
Overall CVSS Score:3.7 (Low)

Go back to menu.

Plugin Source


This is the mcafee_epo_kb78824.nasl nessus plugin source code. This script is Copyright (C) 2013-2021 and is owned by Tenable, Inc. or an Affiliate thereof.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#

include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(68933);
  script_version("1.10");
  script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");

  script_cve_id("CVE-2013-4883");
  script_bugtraq_id(61422);
  script_xref(name:"EDB-ID", value:"26807");

  script_name(english:"McAfee ePolicy Orchestrator < 4.6.7 Multiple XSS");
  script_summary(english:"ePO App Server version check");

  script_set_attribute(attribute:"synopsis", value:
"A security management application on the remote host has multiple
cross-site scripting vulnerabilities.");
  script_set_attribute(attribute:"description", value:
"According to its self-reported version, the version of McAfee ePolicy
Orchestrator (ePO) running on the remote host is 4.6.6 or earlier, and
therefore, has multiple reflected cross-site scripting vulnerabilities. 
An attacker could exploit any of these issues by tricking a user into
requesting a specially crafted URL, resulting in arbitrary script code
execution.");
  script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2013/Jul/80");
  script_set_attribute(attribute:"see_also", value:"https://kc.mcafee.com/corporate/index?page=content&id=KB78824");
  script_set_attribute(attribute:"solution", value:
"There is no solution available at this time.

McAfee plans on fixing these vulnerabilities in ePO version 4.6.7, which
is scheduled to be released in late Q3 2013.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:N/I:P/A:N");
  script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C");

  script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
  script_set_attribute(attribute:"exploit_available", value:"true");
  script_cwe_id(20, 74, 79, 442, 629, 711, 712, 722, 725, 750, 751, 800, 801, 809, 811, 864, 900, 928, 931, 990);

  script_set_attribute(attribute:"vuln_publication_date", value:"2013/07/12");
  script_set_attribute(attribute:"plugin_publication_date", value:"2013/07/17");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:mcafee:epolicy_orchestrator");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"CGI abuses : XSS");

  script_copyright(english:"This script is Copyright (C) 2013-2021 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("mcafee_epo_app_server_detect.nasl");
  script_require_keys("www/epo_app_server");

  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:8443);
install = get_install_from_kb(appname:'epo_app_server', port:port, exit_on_fail:TRUE);
dir = install['dir'];
ver = install['ver'];
url = build_url(qs:dir, port:port);

# this should never be true but this code will be defensive anyway
if (ver == UNKNOWN_VER)
  audit(AUDIT_UNKNOWN_WEB_APP_VER, 'ePO Application Server', url);

# KB78824 says 4.6.6 and earlier are affected.  It doesn't explicitly
# say that only 4.6.x is affected, so the plugin will flag all earlier versions
fix = '4.6.7';
if (ver_compare(ver:ver, fix:fix, strict:FALSE) >= 0)
  audit(AUDIT_WEB_APP_NOT_AFFECTED, 'ePO Application Server', url, ver);

set_kb_item(name:'www/'+port+'/XSS', value:TRUE);

if (report_verbosity > 0)
{
  report =
    '\n  Installed version : ' + ver +
    '\n  Fixed version     : ' + fix + ' (release scheduled for late Q3 2013)\n';
  security_warning(port:port, extra:report);
}
else security_warning(port);

The latest version of this script can be found in these locations depending on your platform:

  • Linux / Unix:
    /opt/nessus/lib/nessus/plugins/mcafee_epo_kb78824.nasl
  • Windows:
    C:\ProgramData\Tenable\Nessus\nessus\plugins\mcafee_epo_kb78824.nasl
  • Mac OS X:
    /Library/Nessus/run/lib/nessus/plugins/mcafee_epo_kb78824.nasl

Go back to menu.

How to Run


Here is how to run the McAfee ePolicy Orchestrator < 4.6.7 Multiple XSS as a standalone plugin via the Nessus web user interface (https://localhost:8834/):

  1. Click to start a New Scan.
  2. Select Advanced Scan.
  3. Navigate to the Plugins tab.
  4. On the top right corner click to Disable All plugins.
  5. On the left side table select CGI abuses : XSS plugin family.
  6. On the right side table select McAfee ePolicy Orchestrator < 4.6.7 Multiple XSS plugin ID 68933.
  7. Specify the target on the Settings tab and click to Save the scan.
  8. Run the scan.

Here are a few examples of how to run the plugin in the command line. Note that the examples below demonstrate the usage on the Linux / Unix platform.

Basic usage:

/opt/nessus/bin/nasl mcafee_epo_kb78824.nasl -t <IP/HOST>

Run the plugin with audit trail message on the console:

/opt/nessus/bin/nasl -a mcafee_epo_kb78824.nasl -t <IP/HOST>

Run the plugin with trace script execution written to the console (useful for debugging):

/opt/nessus/bin/nasl -T - mcafee_epo_kb78824.nasl -t <IP/HOST>

Run the plugin with using a state file for the target and updating it (useful for running multiple plugins on the target):

/opt/nessus/bin/nasl -K /tmp/state mcafee_epo_kb78824.nasl -t <IP/HOST>

Go back to menu.

References


BID | SecurityFocus Bugtraq ID: CWE | Common Weakness Enumeration:
  • CWE-20 (Weakness) Improper Input Validation
  • CWE-74 (Weakness) Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection')
  • CWE-79 (Weakness) Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
  • CWE-442 (Category) DEPRECATED: Web Problems
  • CWE-629 (View) Weaknesses in OWASP Top Ten (2007)
  • CWE-711 (View) Weaknesses in OWASP Top Ten (2004)
  • CWE-712 (Category) OWASP Top Ten 2007 Category A1 - Cross Site Scripting (XSS)
  • CWE-722 (Category) OWASP Top Ten 2004 Category A1 - Unvalidated Input
  • CWE-725 (Category) OWASP Top Ten 2004 Category A4 - Cross-Site Scripting (XSS) Flaws
  • CWE-750 (View) Weaknesses in the 2009 CWE/SANS Top 25 Most Dangerous Programming Errors
  • CWE-751 (Category) 2009 Top 25 - Insecure Interaction Between Components
  • CWE-800 (View) Weaknesses in the 2010 CWE/SANS Top 25 Most Dangerous Programming Errors
  • CWE-801 (Category) 2010 Top 25 - Insecure Interaction Between Components
  • CWE-809 (View) Weaknesses in OWASP Top Ten (2010)
  • CWE-811 (Category) OWASP Top Ten 2010 Category A2 - Cross-Site Scripting (XSS)
  • CWE-864 (Category) 2011 Top 25 - Insecure Interaction Between Components
  • CWE-900 (View) Weaknesses in the 2011 CWE/SANS Top 25 Most Dangerous Software Errors
  • CWE-928 (View) Weaknesses in OWASP Top Ten (2013)
  • CWE-931 (Category) OWASP Top Ten 2013 Category A3 - Cross-Site Scripting (XSS)
  • CWE-990 (Category) SFP Secondary Cluster: Tainted Input to Command
See also: Similar and related Nessus plugins:
  • 59111 - McAfee WebShield UI Dashboard XSS (SB10026)
  • 67120 - McAfee ePO Extension for McAfee Agent Multiple Blind SQL Injection (SB10043)

Version


This page has been produced using Nessus Professional 10.1.2 (#68) LINUX, Plugin set 202205072148.
Plugin file mcafee_epo_kb78824.nasl version 1.10. For more plugins, visit the Nessus Plugin Library.

Go back to menu.