Lucene search

K
openvasCopyright (C) 2011 SecPodOPENVAS:901189
HistoryFeb 28, 2011 - 12:00 a.m.

Hex-Rays IDA Pro Multiple Vulnerabilities

2011-02-2800:00:00
Copyright (C) 2011 SecPod
plugins.openvas.org
15

EPSS

0.026

Percentile

90.6%

This host is installed with Hex-Rays IDA Pro and is prone to
multiple vulnerabilities.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ida_pro_mult_vuln.nasl 7044 2017-09-01 11:50:59Z teissa $
#
# Hex-Rays IDA Pro Multiple Vulnerabilities
#
# Authors:
# Sooraj KS <[email protected]>
#
# Copyright:
# Copyright (c) 2011 SecPod, http://www.secpod.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################

tag_solution = "Apply patch
  https://www.hex-rays.com/machofix.shtml

  *****
  NOTE: Ignore this warning, if above mentioned patch is manually applied.
  *****";

tag_impact = "Successful exploitation will allow attackers to execute arbitrary code or
  cause a denial of service.

  Impact Level: Application";
tag_affected = "Hex-Rays IDA Pro versions 5.7 and 6.0";
tag_insight = "Multiple flaws are due to

  - A buffer overflow error in the Mach-O input file loader allows user-assisted
    remote attackers to cause a denial of service.

  - An unspecified error related to 'conversion of string encodings' and
    'inconsistencies in the handling of UTF8 sequences by the user interface'.

  - An integer overflow error in the COFF/EPOC/EXPLOAD input file loaders.

  - An Integer overflow error in the PSX/GEOS input file loaders.

  - An unspecified error in the Mach-O input file loader allows user-assisted
    remote attackers to cause a denial of service.

  - An unspecified error in the PEF input file loader.";
tag_summary = "This host is installed with Hex-Rays IDA Pro and is prone to
  multiple vulnerabilities.";

if(description)
{
  script_id(901189);
  script_version("$Revision: 7044 $");
  script_tag(name:"last_modification", value:"$Date: 2017-09-01 13:50:59 +0200 (Fri, 01 Sep 2017) $");
  script_tag(name:"creation_date", value:"2011-02-28 11:12:07 +0100 (Mon, 28 Feb 2011)");
  script_cve_id("CVE-2011-1049", "CVE-2011-1050", "CVE-2011-1051",
                "CVE-2011-1052", "CVE-2011-1053", "CVE-2011-1054");
  script_tag(name:"cvss_base", value:"10.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_name("Hex-Rays IDA Pro Multiple Vulnerabilities");

  script_xref(name : "URL" , value : "http://secunia.com/advisories/43190");
  script_xref(name : "URL" , value : "https://www.hex-rays.com/vulnfix.shtml");
  script_xref(name : "URL" , value : "http://www.vupen.com/english/advisories/2011/0357");

  script_tag(name:"qod_type", value:"registry");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2011 SecPod");
  script_family("General");
  script_dependencies("secpod_ida_pro_detect.nasl");
  script_require_keys("IDA/Pro/Ver");
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name : "solution" , value : tag_solution);
  exit(0);
}


include("version_func.inc");

## Get version from KB
idaVer = get_kb_item("IDA/Pro/Ver");

## Check for IDA Pro versions 5.7 and 6.0
if(idaVer =~ "^6\.0\..*" || idaVer =~ "^5\.7\..*"){
  security_message(0);
}

EPSS

0.026

Percentile

90.6%