Lucene search

K
openvasCopyright (C) 2008 Greenbone Networks GmbHOPENVAS:800067
HistoryNov 26, 2008 - 12:00 a.m.

ClamAV get_unicode_name() Off-By-One Heap based BOF Vulnerability

2008-11-2600:00:00
Copyright (C) 2008 Greenbone Networks GmbH
plugins.openvas.org
16

EPSS

0.054

Percentile

93.1%

This host has ClamAV installed, and is prone to denial of service
vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_clamav_remote_dos_vuln.nasl 5159 2017-02-01 17:52:54Z cfi $
#
# ClamAV get_unicode_name() Off-By-One Heap Based BOF Vulnerability
#
# Authors:
# Chandan S <[email protected]>
#
# Copyright:
# Copyright (c) 2008 Greenbone Networks GmbH, http://www.greenbone.net
#
# 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_impact = "A specially crafted VBA project when opened causes heap buffer overflow
  which can be exploited by attackers to execute arbitrary code on the system
  with clamd privileges or cause the application to crash.
  Impact Level: Application";
tag_affected = "ClamAV before 0.94.1 on Linux";
tag_insight = "The flaw exists due to an off-by-one error in the function get_unicode_name()
  in libclamav/vba_extract.c";
tag_solution = "Upgrade to ClamAV 0.94.1
  http://www.clamav.net/";
tag_summary = "This host has ClamAV installed, and is prone to denial of service
  vulnerability.";

if(description)
{
  script_id(800067);
  script_version("$Revision: 5159 $");
  script_tag(name:"last_modification", value:"$Date: 2017-02-01 18:52:54 +0100 (Wed, 01 Feb 2017) $");
  script_tag(name:"creation_date", value:"2008-11-26 16:25:46 +0100 (Wed, 26 Nov 2008)");
  script_tag(name:"cvss_base", value:"9.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C");
  script_cve_id("CVE-2008-5050");
  script_bugtraq_id(32207);
  script_name("ClamAV get_unicode_name() Off-By-One Heap based BOF Vulnerability");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/32663");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/46462");
  script_xref(name : "URL" , value : "http://www.frsirt.com/english/advisories/2008/3085");
  script_xref(name : "URL" , value : "http://sourceforge.net/project/shownotes.php?release_id=637952;group_id=86638");

  script_category(ACT_GATHER_INFO);
  script_tag(name:"qod_type", value:"executable_version");
  script_copyright("Copyright (C) 2008 Greenbone Networks GmbH");
  script_family("Denial of Service");
  script_mandatory_keys("login/SSH/success");
  script_dependencies("gather-package-list.nasl");
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  exit(0);
}


include("ssh_func.inc");
include("version_func.inc");

sock = ssh_login_or_reuse_connection();
if(!sock){
  exit(0);
}

getPath = find_bin(prog_name:"clamscan", sock:sock);
foreach binaryFile (getPath)
{
  if( chomp(binaryFile) == "" ) continue;
  avVer = get_bin_version(full_prog_name:chomp(binaryFile), version_argv:"-V",
                          ver_pattern:"ClamAV ([0-9.]+)", sock:sock);
  if(avVer[1] != NULL)
  {
    if(version_is_less(version:avVer[1], test_version:"0.94.1")){
      security_message(0);
    }
    ssh_close_connection(); # if version is found and not vulnerable, close and exit
    exit(0);
  }
}
ssh_close_connection();