Winamp < 5.52 Ultravox Streaming Metadata in_mp3.dll Multiple Tag Overflow - Nessus

High   Plugin ID: 29998

This page contains detailed information about the Winamp < 5.52 Ultravox Streaming Metadata in_mp3.dll Multiple Tag Overflow Nessus plugin including available exploits and PoCs found on GitHub, in Metasploit or Exploit-DB for verifying of this vulnerability.

Plugin Overview


ID: 29998
Name: Winamp < 5.52 Ultravox Streaming Metadata in_mp3.dll Multiple Tag Overflow
Filename: winamp_552.nasl
Vulnerability Published: N/A
This Plugin Published: 2008-01-18
Last Modification Time: 2022-04-11
Plugin Version: 1.15
Plugin Type: local
Plugin Family: Windows
Dependencies: winamp_in_cdda_buffer_overflow.nasl
Required KB Items [?]: SMB/Winamp/Version

Vulnerability Information


Severity: High
Vulnerability Published: N/A
Patch Published: N/A
CVE [?]: CVE-2008-0065
CPE [?]: cpe:/a:nullsoft:winamp

Synopsis

The remote Windows host contains a multimedia application that is affected by multiple buffer overflow vulnerabilities.

Description

The remote host is using Winamp, a popular media player for Windows.

The version of Winamp installed on the remote Windows host reportedly contains two stack-based buffer overflows in 'in_mp3.dll' when parsing Ultravox streaming metadata that can be triggered by overly-long '<artist>' and '<name>' tag values. If an attacker can trick a user on the affected host into opening a specially crafted file, he could be able to leverage this issue to execute arbitrary code on the host subject to the user's privileges.

Solution

Upgrade to Winamp version 5.52 or later.

Public Exploits


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

Here's the list of publicly known exploits and PoCs for verifying the Winamp < 5.52 Ultravox Streaming Metadata in_mp3.dll Multiple Tag Overflow vulnerability:

  1. Metasploit: exploit/windows/browser/winamp_ultravox
    [Winamp Ultravox Streaming Metadata (in_mp3.dll) Buffer Overflow]
  2. Exploit-DB: exploits/windows/remote/16611.rb
    [EDB-16611: Winamp Ultravox Streaming Metadata 'in_mp3.dll' - Remote 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:M/Au:N/C:C/I:C/A:C/E:F/RL:OF/RC:C
CVSS Base Score:9.3 (High)
Impact Subscore:10.0
Exploitability Subscore:8.6
CVSS Temporal Score:7.7 (High)
CVSS Environmental Score:NA (None)
Modified Impact Subscore:NA
Overall CVSS Score:7.7 (High)

Go back to menu.

Plugin Source


This is the winamp_552.nasl nessus plugin source code. This script is Copyright (C) 2008-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(29998);
  script_version("1.15");
  script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");

  script_cve_id("CVE-2008-0065");
  script_bugtraq_id(27344);
  script_xref(name:"SECUNIA", value:"27865");

  script_name(english:"Winamp < 5.52 Ultravox Streaming Metadata in_mp3.dll Multiple Tag Overflow");

  script_set_attribute(attribute:"synopsis", value:
"The remote Windows host contains a multimedia application that is
affected by multiple buffer overflow vulnerabilities.");
  script_set_attribute(attribute:"description", value:
"The remote host is using Winamp, a popular media player for Windows. 

The version of Winamp installed on the remote Windows host reportedly
contains two stack-based buffer overflows in 'in_mp3.dll' when parsing
Ultravox streaming metadata that can be triggered by overly-long
'<artist>' and '<name>' tag values.  If an attacker can trick a user
on the affected host into opening a specially crafted file, he could be
able to leverage this issue to execute arbitrary code on the host
subject to the user's privileges.");
  script_set_attribute(attribute:"see_also", value:"https://secuniaresearch.flexerasoftware.com/secunia_research/2008-2/advisory/");
  script_set_attribute(attribute:"see_also", value:"http://www.winamp.com/player/version-history");
  script_set_attribute(attribute:"see_also", value:"http://forums.winamp.com/showthread.php?threadid=285024");
  script_set_attribute(attribute:"solution", value:
"Upgrade to Winamp version 5.52 or later.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:M/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:"exploit_framework_core", value:"true");
  script_set_attribute(attribute:"metasploit_name", value:'Winamp Ultravox Streaming Metadata (in_mp3.dll) Buffer Overflow');
  script_set_attribute(attribute:"exploit_framework_metasploit", value:"true");
  script_cwe_id(119);

  script_set_attribute(attribute:"plugin_publication_date", value:"2008/01/18");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:nullsoft:winamp");
  script_set_attribute(attribute:"thorough_tests", value:"true");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Windows");

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

  script_dependencies("winamp_in_cdda_buffer_overflow.nasl");
  script_require_keys("SMB/Winamp/Version");

  exit(0);
}

# Check version of Winamp.

#
# nb: the KB item is based on GetFileVersion, which may differ
#     from what the client reports.

version = get_kb_item("SMB/Winamp/Version");
if (isnull(version)) exit(0);

ver = split(version, sep:'.', keep:FALSE);
for (i=0; i<max_index(ver); i++)
  ver[i] = int(ver[i]);

fix = split("5.5.2.1800", sep:'.', keep:FALSE);
for (i=0; i<max_index(fix); i++)
  fix[i] = int(fix[i]);

for (i=0; i<max_index(ver); i++)
  if ((ver[i] < fix[i]))
  {
    security_hole(get_kb_item("SMB/transport"));
    break;
  }
  else if (ver[i] > fix[i])
    break;

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

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

Go back to menu.

How to Run


Here is how to run the Winamp < 5.52 Ultravox Streaming Metadata in_mp3.dll Multiple Tag Overflow 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 Windows plugin family.
  6. On the right side table select Winamp < 5.52 Ultravox Streaming Metadata in_mp3.dll Multiple Tag Overflow plugin ID 29998.
  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 winamp_552.nasl -t <IP/HOST>

Run the plugin with audit trail message on the console:

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

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

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

Go back to menu.

References


BID | SecurityFocus Bugtraq ID: Secunia Advisory: CWE | Common Weakness Enumeration:
  • CWE-119 (Weakness) Improper Restriction of Operations within the Bounds of a Memory Buffer
See also: Similar and related Nessus plugins:
  • 20826 - Winamp < 5.13 Playlist Handling Multiple Overflows
  • 21738 - Winamp < 5.24 in_midi.dll MIDI File Processing Overflow
  • 20973 - Winamp < 5.2 Multiple Vulnerabilities
  • 25956 - Winamp < 5.35 MP4 File Handling Buffer Overflow
  • 38858 - Winamp < 5.552 Modern Skins Support Module (gen_ff.dll) MAKI File Handling Overflow
  • 35788 - Winamp < 5.55 AIFF File Handling Overflow
  • 50379 - Winamp < 5.59 build 3033 Multiple Vulnerabilities
  • 51091 - Winamp < 5.601 MIDI Timestamp Stack-based Buffer Overflow
  • 67207 - Winamp < 5.64 Multiple Vulnerabilities

Version


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

Go back to menu.