HP-UX PHNE_29244 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01) - Nessus

Medium   Plugin ID: 16926

This page contains detailed information about the HP-UX PHNE_29244 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01) Nessus plugin including available exploits and PoCs found on GitHub, in Metasploit or Exploit-DB for verifying of this vulnerability.

Plugin Overview


ID: 16926
Name: HP-UX PHNE_29244 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01)
Filename: hpux_PHNE_29244.nasl
Vulnerability Published: N/A
This Plugin Published: 2005-02-16
Last Modification Time: 2021-01-11
Plugin Version: 1.14
Plugin Type: local
Plugin Family: HP-UX Local Security Checks
Dependencies: ssh_get_info.nasl
Required KB Items [?]: Host/HP-UX/swlist, Host/HP-UX/version, Host/local_checks_enabled

Vulnerability Information


Severity: Medium
Vulnerability Published: N/A
Patch Published: 2003-07-08
CVE [?]: CVE-2003-0001
CPE [?]: cpe:/o:hp:hp-ux

Synopsis

The remote HP-UX host is missing a security-related patch.

Description

s700_800 11.04 (VVOS) EISA 100BT cumulative patch :

Potential for Ethernet device drivers to reuse packet data for padding. Cross-reference: CERT/cc VU#412115 and CVE CAN-2003-0001.

Solution

Install patch PHNE_29244 or subsequent.

Public Exploits


Target Network Port(s): N/A
Target Asset(s): N/A
Exploit Available: True (Exploit-DB, GitHub)

Here's the list of publicly known exploits and PoCs for verifying the HP-UX PHNE_29244 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01) vulnerability:

  1. Exploit-DB: exploits/hardware/dos/26076.py
    [EDB-26076: Cisco ASA < 8.4.4.6 < 8.2.5.32 - Ethernet Information Leak]
  2. Exploit-DB: exploits/multiple/remote/3555.pl
    [EDB-3555: Ethernet Device Drivers Frame Padding - 'Etherleak' Infomation Leakage]
  3. Exploit-DB: exploits/bsd/remote/22131.pl
    [EDB-22131: Linux Kernel 2.0.x/2.2.x/2.4.x (FreeBSD 4.x) - Network Device Driver Frame Padding Information Disclosure]
  4. GitHub: https://github.com/hackerhouse-opensource/exploits
    [CVE-2003-0001]

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:P/I:N/A:N
CVSS Base Score:5.0 (Medium)
Impact Subscore:2.9
Exploitability Subscore:10.0
CVSS Temporal Score:NA (None)
CVSS Environmental Score:NA (None)
Modified Impact Subscore:NA
Overall CVSS Score:5.0 (Medium)

Go back to menu.

Plugin Source


This is the hpux_PHNE_29244.nasl nessus plugin source code. This script is Copyright (C) 2005-2021 Tenable Network Security, Inc.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
# The descriptive text and patch checks in this plugin were 
# extracted from HP patch PHNE_29244. The text itself is
# copyright (C) Hewlett-Packard Development Company, L.P.
#

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

if (description)
{
  script_id(16926);
  script_version("1.14");
  script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/11");

  script_cve_id("CVE-2003-0001");
  script_xref(name:"CERT", value:"412115");
  script_xref(name:"HP", value:"HPSBUX0305");
  script_xref(name:"HP", value:"SSRT3451");

  script_name(english:"HP-UX PHNE_29244 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01)");
  script_summary(english:"Checks for the patch in the swlist output");

  script_set_attribute(
    attribute:"synopsis", 
    value:"The remote HP-UX host is missing a security-related patch."
  );
  script_set_attribute(
    attribute:"description", 
    value:
"s700_800 11.04 (VVOS) EISA 100BT cumulative patch : 

Potential for Ethernet device drivers to reuse packet data for
padding. Cross-reference: CERT/cc VU#412115 and CVE CAN-2003-0001."
  );
  script_set_attribute(
    attribute:"solution", 
    value:"Install patch PHNE_29244 or subsequent."
  );
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"cpe:/o:hp:hp-ux");

  script_set_attribute(attribute:"patch_publication_date", value:"2003/07/08");
  script_set_attribute(attribute:"plugin_publication_date", value:"2005/02/16");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_copyright(english:"This script is Copyright (C) 2005-2021 Tenable Network Security, Inc.");
  script_family(english:"HP-UX Local Security Checks");

  script_dependencies("ssh_get_info.nasl");
  script_require_keys("Host/local_checks_enabled", "Host/HP-UX/version", "Host/HP-UX/swlist");

  exit(0);
}


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


if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
if (!get_kb_item("Host/HP-UX/version")) audit(AUDIT_OS_NOT, "HP-UX");
if (!get_kb_item("Host/HP-UX/swlist")) audit(AUDIT_PACKAGE_LIST_MISSING);

if (!hpux_check_ctx(ctx:"11.04"))
{
  exit(0, "The host is not affected since PHNE_29244 applies to a different OS release.");
}

patches = make_list("PHNE_29244");
foreach patch (patches)
{
  if (hpux_installed(app:patch))
  {
    exit(0, "The host is not affected because patch "+patch+" is installed.");
  }
}


flag = 0;
if (hpux_check_patch(app:"100BT-EISA-FMT.100BT-FORMAT", version:"B.11.04.01")) flag++;
if (hpux_check_patch(app:"100BT-EISA-FMT.100BT-FORMAT", version:"B.11.04.02")) flag++;
if (hpux_check_patch(app:"100BT-EISA-FMT.100BT-FORMAT", version:"B.11.04.03")) flag++;
if (hpux_check_patch(app:"100BT-EISA-FMT.100BT-FORMAT", version:"B.11.04.04")) flag++;
if (hpux_check_patch(app:"100BT-EISA-KRN.100BT-KRN", version:"B.11.04.01")) flag++;
if (hpux_check_patch(app:"100BT-EISA-KRN.100BT-KRN", version:"B.11.04.02")) flag++;
if (hpux_check_patch(app:"100BT-EISA-KRN.100BT-KRN", version:"B.11.04.03")) flag++;
if (hpux_check_patch(app:"100BT-EISA-KRN.100BT-KRN", version:"B.11.04.04")) flag++;
if (hpux_check_patch(app:"100BT-EISA-RUN.100BT-INIT", version:"B.11.04.01")) flag++;
if (hpux_check_patch(app:"100BT-EISA-RUN.100BT-INIT", version:"B.11.04.02")) flag++;
if (hpux_check_patch(app:"100BT-EISA-RUN.100BT-INIT", version:"B.11.04.03")) flag++;
if (hpux_check_patch(app:"100BT-EISA-RUN.100BT-INIT", version:"B.11.04.04")) flag++;
if (hpux_check_patch(app:"100BT-EISA-RUN.100BT-RUN", version:"B.11.04.01")) flag++;
if (hpux_check_patch(app:"100BT-EISA-RUN.100BT-RUN", version:"B.11.04.02")) flag++;
if (hpux_check_patch(app:"100BT-EISA-RUN.100BT-RUN", version:"B.11.04.03")) flag++;
if (hpux_check_patch(app:"100BT-EISA-RUN.100BT-RUN", version:"B.11.04.04")) flag++;


if (flag)
{
  if (report_verbosity > 0) security_warning(port:0, extra:hpux_report_get());
  else security_warning(0);
  exit(0);
}
else audit(AUDIT_HOST_NOT, "affected");

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

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

Go back to menu.

How to Run


Here is how to run the HP-UX PHNE_29244 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01) 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 HP-UX Local Security Checks plugin family.
  6. On the right side table select HP-UX PHNE_29244 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01) plugin ID 16926.
  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 hpux_PHNE_29244.nasl -t <IP/HOST>

Run the plugin with audit trail message on the console:

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

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

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

Go back to menu.

References


CERT | Computer Emergency Response Team: Hewlett Packard Security:
  • HPSBUX0305, SSRT3451
See also: Similar and related Nessus plugins:
  • 15148 - Debian DSA-311-1 : linux-kernel-2.4.18 - several vulnerabilities
  • 15149 - Debian DSA-312-1 : kernel-patch-2.4.18-powerpc - several vulnerabilities
  • 15169 - Debian DSA-332-1 : linux-kernel-2.4.17 - several vulnerabilities
  • 15173 - Debian DSA-336-1 : linux-kernel-2.2.20 - several vulnerabilities
  • 15260 - Debian DSA-423-1 : linux-kernel-2.4.17-ia64 - several vulnerabilities
  • 15279 - Debian DSA-442-1 : linux-kernel-2.4.17-s390 - several vulnerabilities
  • 11197 - Multiple Ethernet Driver Frame Padding Information Disclosure (Etherleak)
  • 16670 - HP-UX PHNE_28143 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01)
  • 17417 - HP-UX PHNE_28636 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01)
  • 17420 - HP-UX PHNE_29267 : HPSBUX0305-261 SSRT3451 Potential Security Vulnerability in HP-UX network drivers (Data Leakage) (rev. 01)
  • 68912 - Juniper Junos SRX1400/3400/3600 Etherleak Information Disclosure (JSA10579)
  • 14023 - Mandrake Linux Security Advisory : kernel22 (MDKSA-2003:039)
  • 14049 - Mandrake Linux Security Advisory : kernel (MDKSA-2003:066-2)
  • 14057 - Mandrake Linux Security Advisory : kernel (MDKSA-2003:074)
  • 107944 - Solaris 10 (x86) : 125907-02
  • 69906 - Solaris 10 (x86) : 125907-02 (deprecated)
  • 80936 - Oracle Solaris Critical Patch Update : jan2015_SRU11_1_11_4_0

Version


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

Go back to menu.