Vulnerabilities > CVE-2011-0615 - Buffer Errors vulnerability in Adobe Audition 3.0

047910
CVSS 9.3 - CRITICAL
Attack vector
NETWORK
Attack complexity
MEDIUM
Privileges required
NONE
Confidentiality impact
COMPLETE
Integrity impact
COMPLETE
Availability impact
COMPLETE
network
adobe
CWE-119
critical
nessus

Summary

Multiple buffer overflows in Adobe Audition 3.0.1 and earlier allow remote attackers to execute arbitrary code or cause a denial of service (memory corruption and application crash) via crafted data in unspecified fields in the TRKM chunk in an Audition Session (aka .ses) file, related to inconsistent use of character data types.

Vulnerable Configurations

Part Description Count
Application
Adobe
2

Common Attack Pattern Enumeration and Classification (CAPEC)

  • Buffer Overflow via Environment Variables
    This attack pattern involves causing a buffer overflow through manipulation of environment variables. Once the attacker finds that they can modify an environment variable, they may try to overflow associated buffers. This attack leverages implicit trust often placed in environment variables.
  • Overflow Buffers
    Buffer Overflow attacks target improper or missing bounds checking on buffer operations, typically triggered by input injected by an attacker. As a consequence, an attacker is able to write past the boundaries of allocated buffer regions in memory, causing a program crash or potentially redirection of execution as per the attackers' choice.
  • Client-side Injection-induced Buffer Overflow
    This type of attack exploits a buffer overflow vulnerability in targeted client software through injection of malicious content from a custom-built hostile service.
  • Filter Failure through Buffer Overflow
    In this attack, the idea is to cause an active filter to fail by causing an oversized transaction. An attacker may try to feed overly long input strings to the program in an attempt to overwhelm the filter (by causing a buffer overflow) and hoping that the filter does not fail securely (i.e. the user input is let into the system unfiltered).
  • MIME Conversion
    An attacker exploits a weakness in the MIME conversion routine to cause a buffer overflow and gain control over the mail server machine. The MIME system is designed to allow various different information formats to be interpreted and sent via e-mail. Attack points exist when data are converted to MIME compatible format and back.

Nessus

NASL familyWindows
NASL idADOBE_AUDITION_APSB11-10.NASL
descriptionAccording to its version number, the Adobe Audition install on the remote host is potentially affected by multiple buffer overflows when handling specially crafted Audition Session (.ses) files. By tricking a user into opening a specially crafted .ses file, an unauthenticated, remote attacker may be able to leverage these issues to execute arbitrary code subject to the privileges of the user running the application.
last seen2020-06-01
modified2020-06-02
plugin id54606
published2011-05-20
reporterThis script is Copyright (C) 2011-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/54606
titleAdobe Audition < CS5.5 Multiple SES Session File Processing Overflows (APSB11-10)
code
#
# (C) Tenable Network Security, Inc.
#

include('compat.inc');

if (description)
{
  script_id(54606);
  script_version("1.8");
  script_cvs_date("Date: 2018/11/15 20:50:26");

  script_cve_id("CVE-2011-0614", "CVE-2011-0615");
  script_bugtraq_id(47838, 47841);
  script_xref(name:"Secunia", value:"44588");

  script_name(english:"Adobe Audition < CS5.5 Multiple SES Session File Processing Overflows (APSB11-10)");
  script_summary(english:"Checks version of Adobe Audition");

  script_set_attribute(attribute:"synopsis", value:
"The remote Windows host has an application installed that is affected
by multiple buffer overflow vulnerabilities.");
  script_set_attribute(attribute:"description", value:
"According to its version number, the Adobe Audition install on the
remote host is potentially affected by multiple buffer overflows when
handling specially crafted Audition Session (.ses) files. 

By tricking a user into opening a specially crafted .ses file, an
unauthenticated, remote attacker may be able to leverage these issues
to execute arbitrary code subject to the privileges of the user
running the application.");

  script_set_attribute(attribute:"see_also", value:"https://www.zeroscience.mk/en/vulnerabilities/ZSL-2011-5012.php");
  script_set_attribute(attribute:"see_also", value:"https://www.secureauth.com/labs/advisories/Adobe-Audition-malformed-SES-file");
  script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2011/May/110");
  script_set_attribute(attribute:"see_also", value:"https://www.adobe.com/support/security/bulletins/apsb11-10.html");
  script_set_attribute(attribute:"solution", value:"Upgrade to Adobe Audition CS5.5 (4.0) 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:POC/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:"vuln_publication_date", value:"2011/05/12");
  script_set_attribute(attribute:"patch_publication_date", value:"2011/05/12");
  script_set_attribute(attribute:"plugin_publication_date", value:"2011/05/20");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:adobe:audition");
  script_set_attribute(attribute:"plugin_type", value:"local");
  script_end_attributes();

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

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

  script_dependencies("adobe_audition_installed.nasl");
  script_require_keys("SMB/Adobe_Audition/installed");

  exit(0);
}

include('global_settings.inc');
include('misc_func.inc');

installs = get_kb_list('SMB/Adobe_Audition/*/Path');
if (isnull(installs)) exit(1, 'The SMB/Adobe_Audition/*/path KB list is missing.');

vuln = 0;
report = '';
foreach item (keys(installs))
{
  version = item - 'SMB/Adobe_Audition/';
  version = version - '/Path';
  if (version == 'Unknown') continue;

  verui = get_kb_item('SMB/Adobe_Audition/'+version+'/Version_UI');
  fix = '4.0.0.0';

  if (ver_compare(ver:version, fix:fix) == -1)
  {
    vuln++;

    report +=
      '\n  Path              : ' + installs[item] +
      '\n  Installed version : ' + verui +
      '\n  Fixed version     : CS5.5 (4.0)\n';
  }
}

if (report)
{
  if (report_verbosity > 0)
  {
    if (vuln > 1) s = 's of Adobe Audition were found ';
    else s = ' of Adobe Audition was found ';

    report = 
      '\n  The following vulnerable install' + s + 'on the' +
      '\n  remote host :' +
      '\n' +
      report;
    security_hole(port:get_kb_item('SMB/transport'), extra:report);
  }
  else security_hole(port:get_kb_item('SMB/transport'));
  exit(0);
}
exit(0, 'No vulnerable installs of Adobe Audition were detected on the remote host.');

Packetstorm

data sourcehttps://packetstormsecurity.com/files/download/101374/CORE-2011-0204.txt
idPACKETSTORM:101374
last seen2016-12-05
published2011-05-12
reporterCore Security Technologies
sourcehttps://packetstormsecurity.com/files/101374/Core-Security-Technologies-Advisory-2011.0204.html
titleCore Security Technologies Advisory 2011.0204