Solaris 10 (x86) : 125907-02 - Nessus

Medium   Plugin ID: 107944

This page contains detailed information about the Solaris 10 (x86) : 125907-02 Nessus plugin including available exploits and PoCs found on GitHub, in Metasploit or Exploit-DB for verifying of this vulnerability.

Plugin Overview


ID: 107944
Name: Solaris 10 (x86) : 125907-02
Filename: solaris10_x86_125907-02.nasl
Vulnerability Published: 2003-01-17
This Plugin Published: 2018-03-12
Last Modification Time: 2021-01-14
Plugin Version: 1.6
Plugin Type: local
Plugin Family: Solaris Local Security Checks
Dependencies: ssh_get_info.nasl
Required KB Items [?]: Host/local_checks_enabled, Host/Solaris/showrev

Vulnerability Information


Severity: Medium
Vulnerability Published: 2003-01-17
Patch Published: 2013-09-12
CVE [?]: CVE-2003-0001
CPE [?]: cpe:/o:oracle:solaris:10, p-cpe:/a:oracle:solaris:10:121287, p-cpe:/a:oracle:solaris:10:125907

Synopsis

The remote host is missing Sun Security Patch number 125907-02

Description

Vulnerability in the Solaris component of Oracle Sun Systems Products Suite (subcomponent: AMD pcnet driver). Supported versions that are affected are 10 and 11. Easily exploitable vulnerability allows successful unauthenticated network attacks via TCP/IP. Successful attack of this vulnerability can result in unauthorized read access to a subset of Solaris accessible data.

Solution

Install patch 125907-02 or higher

Public Exploits


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

Here's the list of publicly known exploits and PoCs for verifying the Solaris 10 (x86) : 125907-02 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 Score Source [?]: CVE-2003-0001
CVSS V2 Vector: AV:N/AC:L/Au:N/C:P/I:N/A:N/E:POC/RL:OF/RC:C
CVSS Base Score:5.0 (Medium)
Impact Subscore:2.9
Exploitability Subscore:10.0
CVSS Temporal Score:3.9 (Low)
CVSS Environmental Score:NA (None)
Modified Impact Subscore:NA
Overall CVSS Score:3.9 (Low)

Go back to menu.

Plugin Source


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

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
# The descriptive text in this plugin was
# extracted from the Oracle SunOS Patch Updates.
#
include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(107944);
  script_version("1.6");
  script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/14");

  script_cve_id("CVE-2003-0001");

  script_name(english:"Solaris 10 (x86) : 125907-02");
  script_summary(english:"Check for patch 125907-02");

  script_set_attribute(
    attribute:"synopsis", 
    value:"The remote host is missing Sun Security Patch number 125907-02"
  );
  script_set_attribute(
    attribute:"description", 
    value:
"Vulnerability in the Solaris component of Oracle Sun Systems Products
Suite (subcomponent: AMD pcnet driver). Supported versions that are
affected are 10 and 11. Easily exploitable vulnerability allows
successful unauthenticated network attacks via TCP/IP. Successful
attack of this vulnerability can result in unauthorized read access to
a subset of Solaris accessible data."
  );
  script_set_attribute(
    attribute:"see_also",
    value:"https://getupdates.oracle.com/readme/125907-02"
  );
  script_set_attribute(attribute:"solution", value:"Install patch 125907-02 or higher");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
  script_set_cvss_temporal_vector("CVSS2#E:POC/RL:OF/RC:C");
  script_set_attribute(attribute:"cvss_score_source", value:"CVE-2003-0001");
  script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"true");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"p-cpe:/a:oracle:solaris:10:121287");
  script_set_attribute(attribute:"cpe", value:"p-cpe:/a:oracle:solaris:10:125907");
  script_set_attribute(attribute:"cpe", value:"cpe:/o:oracle:solaris:10");

  script_set_attribute(attribute:"vuln_publication_date", value:"2003/01/17");
  script_set_attribute(attribute:"patch_publication_date", value:"2013/09/12");
  script_set_attribute(attribute:"plugin_publication_date", value:"2018/03/12");
  script_set_attribute(attribute:"generated_plugin", value:"current");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_copyright(english:"This script is Copyright (C) 2018-2021 and is owned by Tenable, Inc. or an Affiliate thereof.");
  script_family(english:"Solaris Local Security Checks");

  script_dependencies("ssh_get_info.nasl");
  script_require_keys("Host/local_checks_enabled", "Host/Solaris/showrev");

  exit(0);
}


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

showrev = get_kb_item("Host/Solaris/showrev");
if (empty_or_null(showrev)) audit(AUDIT_OS_NOT, "Solaris");
os_ver = pregmatch(pattern:"Release: (\d+.(\d+))", string:showrev);
if (empty_or_null(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Solaris");
full_ver = os_ver[1];
os_level = os_ver[2];
if (full_ver != "5.10") audit(AUDIT_OS_NOT, "Solaris 10", "Solaris " + os_level);
package_arch = pregmatch(pattern:"Application architecture: (\w+)", string:showrev);
if (empty_or_null(package_arch)) audit(AUDIT_UNKNOWN_ARCH);
package_arch = package_arch[1];
if (package_arch != "i386") audit(AUDIT_ARCH_NOT, "i386", package_arch);
if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);

if (solaris_check_patch(release:"5.10_x86", arch:"i386", patch:"125907-02", obsoleted_by:"", package:"SUNWos86r", version:"11.10.0,REV=2005.01.21.16.34") < 0) flag++;

if (flag) {
  security_report_v4(
    port       : 0,
    severity   : SECURITY_WARNING,
    extra      : solaris_get_report()
  );
} else {
  patch_fix = solaris_patch_fix_get();
  if (!empty_or_null(patch_fix)) audit(AUDIT_PATCH_INSTALLED, patch_fix, "Solaris 10");
  tested = solaris_pkg_tests_get();
  if (!empty_or_null(tested)) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
  audit(AUDIT_PACKAGE_NOT_INSTALLED, "SUNWos86r");
}

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

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

Go back to menu.

How to Run


Here is how to run the Solaris 10 (x86) : 125907-02 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 Solaris Local Security Checks plugin family.
  6. On the right side table select Solaris 10 (x86) : 125907-02 plugin ID 107944.
  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 solaris10_x86_125907-02.nasl -t <IP/HOST>

Run the plugin with audit trail message on the console:

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

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

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

Go back to menu.

References


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)
  • 16926 - HP-UX PHNE_29244 : 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)
  • 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 solaris10_x86_125907-02.nasl version 1.6. For more plugins, visit the Nessus Plugin Library.

Go back to menu.