HP Intelligent Management Center User Access Manager Datagram Parsing Code Execution - Nessus

Critical   Plugin ID: 63265

This page contains detailed information about the HP Intelligent Management Center User Access Manager Datagram Parsing Code Execution Nessus plugin including available exploits and PoCs found on GitHub, in Metasploit or Exploit-DB for verifying of this vulnerability.

Plugin Overview


ID: 63265
Name: HP Intelligent Management Center User Access Manager Datagram Parsing Code Execution
Filename: hp_imc_uac_51_sp1.nasl
Vulnerability Published: 2012-08-29
This Plugin Published: 2012-12-14
Last Modification Time: 2022-04-11
Plugin Version: 1.6
Plugin Type: remote
Plugin Family: Gain a shell remotely
Dependencies: hp_imc_detect.nbin

Vulnerability Information


Severity: Critical
Vulnerability Published: 2012-08-29
Patch Published: 2012-12-04
CVE [?]: CVE-2012-3274
CPE [?]: cpe:/a:hp:intelligent_management_center

Synopsis

The remote host has a user access management application installed that is affected by a code execution vulnerability.

Description

According to its version number, the HP Intelligent Management Center User Access Manager installed on the remote host is affected by a stack-based buffer overflow vulnerability. By sending a specially crafted datagram, a remote, unauthenticated attacker could execute arbitrary code on the remote host subject to the privileges of the user running the affected application.

Solution

Upgrade to HP Intelligent Management Center User Access Manager 5.1 SP1 or later.

Public Exploits


Target Network Port(s): 61616
Target Asset(s): Services/activemq
Exploit Available: True (Metasploit Framework, Exploit-DB)
Exploit Ease: Exploits are available

Here's the list of publicly known exploits and PoCs for verifying the HP Intelligent Management Center User Access Manager Datagram Parsing Code Execution vulnerability:

  1. Metasploit: exploit/windows/misc/hp_imc_uam
    [HP Intelligent Management Center UAM Buffer Overflow]
  2. Exploit-DB: exploits/windows/local/41710.rb
    [EDB-41710: HP Intelligent Management Center < 5.0 E0102 - UAM Buffer Overflow (Metasploit)]

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:L/Au:N/C:C/I:C/A:C/E:F/RL:OF/RC:C
CVSS Base Score:10.0 (High)
Impact Subscore:10.0
Exploitability Subscore:10.0
CVSS Temporal Score:8.3 (High)
CVSS Environmental Score:NA (None)
Modified Impact Subscore:NA
Overall CVSS Score:8.3 (High)

Go back to menu.

Plugin Source


This is the hp_imc_uac_51_sp1.nasl nessus plugin source code. This script is Copyright (C) 2012-2022 Tenable Network Security, Inc.

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

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

if (description)
{
  script_id(63265);
  script_version("1.6");
  script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");

  script_cve_id("CVE-2012-3274");
  script_bugtraq_id(55271);

  script_name(english:"HP Intelligent Management Center User Access Manager Datagram Parsing Code Execution");

  script_set_attribute(attribute:"synopsis", value:
"The remote host has a user access management application installed that
is affected by a code execution vulnerability.");
  script_set_attribute(attribute:"description", value:
"According to its version number, the HP Intelligent Management Center
User Access Manager installed on the remote host is affected by a
stack-based buffer overflow vulnerability.  By sending a specially
crafted datagram, a remote, unauthenticated attacker could execute
arbitrary code on the remote host subject to the privileges of the user
running the affected application.");
  script_set_attribute(attribute:"see_also", value:"https://www.zerodayinitiative.com/advisories/ZDI-12-171/");
  script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2012/Dec/46");
  # https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c03589863-1
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?14469924");
  script_set_attribute(attribute:"solution", value:
"Upgrade to HP Intelligent Management Center User Access Manager 5.1 SP1
or later.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");

  script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"true");
  script_set_attribute(attribute:"metasploit_name", value:'HP Intelligent Management Center UAM Buffer Overflow');
  script_set_attribute(attribute:"exploit_framework_metasploit", value:"true");

  script_set_attribute(attribute:"vuln_publication_date", value:"2012/08/29");
  script_set_attribute(attribute:"patch_publication_date", value:"2012/12/04");
  script_set_attribute(attribute:"plugin_publication_date", value:"2012/12/14");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:hp:intelligent_management_center");
  script_set_attribute(attribute:"thorough_tests", value:"true");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Gain a shell remotely");

  script_copyright(english:"This script is Copyright (C) 2012-2022 Tenable Network Security, Inc.");

  script_dependencies("hp_imc_detect.nbin");
  script_require_ports("Services/activemq", 61616);

  exit(0);
}

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

# Figure out which port to user
port = get_service(svc:'activemq', default:61616, exit_on_fail:TRUE);

version = get_kb_item_or_exit('hp/hp_imc/'+port+'/components/iMC-UAM/version');

# All versions before 5.1-E0101P01 are affected
if (version =~ '^([0-4]\\.|5\\.(0|1([^\\-]|-E0101([^P]|$|P00($|[^0-9])))))')
{
  if (report_verbosity > 0)
  {
    report =
      '\n  Installed version : ' + version +
      '\n  Fixed version     : 5.1-E0301P03' +
      '\n';
    security_hole(port:port, extra:report);
  }
  else security_hole(port);
  exit(0);
}
else audit(AUDIT_LISTEN_NOT_VULN, 'HP Intelligent Management Center User Access Manager', port, version); 

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

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

Go back to menu.

How to Run


Here is how to run the HP Intelligent Management Center User Access Manager Datagram Parsing Code Execution 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 Gain a shell remotely plugin family.
  6. On the right side table select HP Intelligent Management Center User Access Manager Datagram Parsing Code Execution plugin ID 63265.
  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 hp_imc_uac_51_sp1.nasl -t <IP/HOST>

Run the plugin with audit trail message on the console:

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

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

/opt/nessus/bin/nasl -T - hp_imc_uac_51_sp1.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 hp_imc_uac_51_sp1.nasl -t <IP/HOST>

Go back to menu.

References


BID | SecurityFocus Bugtraq ID: See also: Similar and related Nessus plugins:
  • 55552 - HP Data Protector <= A.06.20 Multiple Vulnerabilities (uncredentialed check)
  • 53641 - HP Data Protector Remote Command Execution
  • 43635 - HP Data Protector OmniInet.exe MSG_PROTOCOL Command RCE
  • 65255 - HP Intelligent Management Center < 5.2 E401 Multiple Vulnerabilities
  • 55907 - HP iNode Management Center Buffer Overflow (HPSB3C02687) (remote check)
  • 62902 - HP LoadRunner < 11.00 Patch 4 Code Execution (intrusive check)
  • 69424 - HP LoadRunner < 11.52 SSL Connection Handling Stack Buffer Overflow RCE
  • 58516 - HP OpenView Network Node Manager Multiple Code Execution Vulnerabilities (HPSBMU02712 SSRT100649)
  • 61612 - HP SAN/iQ <= 10.0 Root Shell Command Injection
  • 59330 - HP SAN/iQ < 9.5 Root Shell Command Injection
  • 64633 - HP LeftHand Virtual SAN Appliance < 10.0 hydra Service Multiple RCE
  • 27054 - HP Linux Imaging and Printing Project (hplip) hpssd from Address Command Injection
  • 33285 - EMC AlphaStor Library Manager Remote Code Execution
  • 78385 - Bash Incomplete Fix Remote Code Execution Vulnerability (Shellshock)
  • 78067 - Bash Remote Code Execution (CVE-2014-6277 / CVE-2014-6278) (Shellshock)
  • 77823 - Bash Remote Code Execution (Shellshock)
  • 67248 - Cisco Prime Data Center Network Manager RMI Remote Code Execution (credentialed check)
  • 67247 - Cisco Prime Data Center Network Manager RMI Remote Code Execution (uncredentialed check)
  • 119780 - Netatalk OpenSession Remote Code Execution
  • 62026 - Novell File Reporter Agent XML Parsing Remote Code Execution
  • 58119 - Symantec pcAnywhere awhost32 Remote Code Execution

Version


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

Go back to menu.