Vulnerabilities > CVE-2013-6497 - Code vulnerability in Clamav
Attack vector
LOCAL Attack complexity
LOW Privileges required
NONE Confidentiality impact
NONE Integrity impact
NONE Availability impact
PARTIAL Summary
clamscan in ClamAV before 0.98.5, when using -a option, allows remote attackers to cause a denial of service (crash) as demonstrated by the jwplayer.js file.
Vulnerable Configurations
Common Weakness Enumeration (CWE)
Nessus
NASL family Ubuntu Local Security Checks NASL id UBUNTU_USN-2423-1.NASL description Kurt Seifried discovered that ClamAV incorrectly handled certain JavaScript files. An attacker could possibly use this issue to cause ClamAV to crash, resulting in a denial of service, or possibly execute arbitrary code. (CVE-2013-6497) Damien Millescamp discovered that ClamAV incorrectly handled certain PE files. An attacker could possibly use this issue to cause ClamAV to crash, resulting in a denial of service, or possibly execute arbitrary code. (CVE-2014-9050). Note that Tenable Network Security has extracted the preceding description block directly from the Ubuntu security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues. last seen 2020-06-01 modified 2020-06-02 plugin id 79598 published 2014-11-27 reporter Ubuntu Security Notice (C) 2014-2019 Canonical, Inc. / NASL script (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/79598 title Ubuntu 12.04 LTS / 14.04 LTS / 14.10 : clamav vulnerabilities (USN-2423-1) code # # (C) Tenable Network Security, Inc. # # The descriptive text and package checks in this plugin were # extracted from Ubuntu Security Notice USN-2423-1. The text # itself is copyright (C) Canonical, Inc. See # <http://www.ubuntu.com/usn/>. Ubuntu(R) is a registered # trademark of Canonical, Inc. # include("compat.inc"); if (description) { script_id(79598); script_version("1.9"); script_cvs_date("Date: 2019/09/19 12:54:30"); script_cve_id("CVE-2013-6497", "CVE-2014-9050"); script_bugtraq_id(71178, 71242); script_xref(name:"USN", value:"2423-1"); script_name(english:"Ubuntu 12.04 LTS / 14.04 LTS / 14.10 : clamav vulnerabilities (USN-2423-1)"); script_summary(english:"Checks dpkg output for updated package."); script_set_attribute( attribute:"synopsis", value:"The remote Ubuntu host is missing a security-related patch." ); script_set_attribute( attribute:"description", value: "Kurt Seifried discovered that ClamAV incorrectly handled certain JavaScript files. An attacker could possibly use this issue to cause ClamAV to crash, resulting in a denial of service, or possibly execute arbitrary code. (CVE-2013-6497) Damien Millescamp discovered that ClamAV incorrectly handled certain PE files. An attacker could possibly use this issue to cause ClamAV to crash, resulting in a denial of service, or possibly execute arbitrary code. (CVE-2014-9050). Note that Tenable Network Security has extracted the preceding description block directly from the Ubuntu security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues." ); script_set_attribute( attribute:"see_also", value:"https://usn.ubuntu.com/2423-1/" ); script_set_attribute( attribute:"solution", value:"Update the affected clamav package." ); script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P"); script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C"); script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available"); script_set_attribute(attribute:"exploit_available", value:"false"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:canonical:ubuntu_linux:clamav"); script_set_attribute(attribute:"cpe", value:"cpe:/o:canonical:ubuntu_linux:12.04:-:lts"); script_set_attribute(attribute:"cpe", value:"cpe:/o:canonical:ubuntu_linux:14.04"); script_set_attribute(attribute:"cpe", value:"cpe:/o:canonical:ubuntu_linux:14.10"); script_set_attribute(attribute:"vuln_publication_date", value:"2014/12/01"); script_set_attribute(attribute:"patch_publication_date", value:"2014/11/26"); script_set_attribute(attribute:"plugin_publication_date", value:"2014/11/27"); script_set_attribute(attribute:"generated_plugin", value:"current"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_copyright(english:"Ubuntu Security Notice (C) 2014-2019 Canonical, Inc. / NASL script (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof."); script_family(english:"Ubuntu Local Security Checks"); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/cpu", "Host/Ubuntu", "Host/Ubuntu/release", "Host/Debian/dpkg-l"); exit(0); } include("audit.inc"); include("ubuntu.inc"); include("misc_func.inc"); if ( ! get_kb_item("Host/local_checks_enabled") ) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED); release = get_kb_item("Host/Ubuntu/release"); if ( isnull(release) ) audit(AUDIT_OS_NOT, "Ubuntu"); release = chomp(release); if (! preg(pattern:"^(12\.04|14\.04|14\.10)$", string:release)) audit(AUDIT_OS_NOT, "Ubuntu 12.04 / 14.04 / 14.10", "Ubuntu " + release); if ( ! get_kb_item("Host/Debian/dpkg-l") ) audit(AUDIT_PACKAGE_LIST_MISSING); cpu = get_kb_item("Host/cpu"); if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH); if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Ubuntu", cpu); flag = 0; if (ubuntu_check(osver:"12.04", pkgname:"clamav", pkgver:"0.98.5+addedllvm-0ubuntu0.12.04.1")) flag++; if (ubuntu_check(osver:"14.04", pkgname:"clamav", pkgver:"0.98.5+addedllvm-0ubuntu0.14.04.1")) flag++; if (ubuntu_check(osver:"14.10", pkgname:"clamav", pkgver:"0.98.5+dfsg-0ubuntu0.14.10.1")) flag++; if (flag) { security_report_v4( port : 0, severity : SECURITY_WARNING, extra : ubuntu_report_get() ); exit(0); } else { tested = ubuntu_pkg_tests_get(); if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested); else audit(AUDIT_PACKAGE_NOT_INSTALLED, "clamav"); }
NASL family Amazon Linux Local Security Checks NASL id ALA_ALAS-2014-457.NASL description clamscan in ClamAV before 0.98.5, when using -a option, allows remote attackers to cause a denial of service (crash) as demonstrated by the jwplayer.js file. last seen 2020-06-01 modified 2020-06-02 plugin id 79841 published 2014-12-10 reporter This script is Copyright (C) 2014-2018 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/79841 title Amazon Linux AMI : clamav (ALAS-2014-457) code # # (C) Tenable Network Security, Inc. # # The descriptive text and package checks in this plugin were # extracted from Amazon Linux AMI Security Advisory ALAS-2014-457. # include("compat.inc"); if (description) { script_id(79841); script_version("1.3"); script_cvs_date("Date: 2018/04/18 15:09:35"); script_cve_id("CVE-2013-6497"); script_xref(name:"ALAS", value:"2014-457"); script_name(english:"Amazon Linux AMI : clamav (ALAS-2014-457)"); script_summary(english:"Checks rpm output for the updated packages"); script_set_attribute( attribute:"synopsis", value:"The remote Amazon Linux AMI host is missing a security update." ); script_set_attribute( attribute:"description", value: "clamscan in ClamAV before 0.98.5, when using -a option, allows remote attackers to cause a denial of service (crash) as demonstrated by the jwplayer.js file." ); script_set_attribute( attribute:"see_also", value:"https://alas.aws.amazon.com/ALAS-2014-457.html" ); script_set_attribute( attribute:"solution", value:"Run 'yum update clamav' to update your system." ); script_set_cvss_base_vector("CVSS2#AV:L/AC:L/Au:N/C:N/I:N/A:P"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-data"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-data-empty"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-db"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-debuginfo"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-devel"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-filesystem"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-lib"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-milter"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-milter-sysvinit"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-scanner"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-scanner-sysvinit"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-server"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-server-sysvinit"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamav-update"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:amazon:linux:clamd"); script_set_attribute(attribute:"cpe", value:"cpe:/o:amazon:linux"); script_set_attribute(attribute:"patch_publication_date", value:"2014/12/08"); script_set_attribute(attribute:"plugin_publication_date", value:"2014/12/10"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2014-2018 Tenable Network Security, Inc."); script_family(english:"Amazon Linux Local Security Checks"); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/local_checks_enabled", "Host/AmazonLinux/release", "Host/AmazonLinux/rpm-list"); exit(0); } include("audit.inc"); include("global_settings.inc"); include("rpm.inc"); if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED); release = get_kb_item("Host/AmazonLinux/release"); if (isnull(release) || !strlen(release)) audit(AUDIT_OS_NOT, "Amazon Linux"); os_ver = pregmatch(pattern: "^AL(A|\d)", string:release); if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Amazon Linux"); os_ver = os_ver[1]; if (os_ver != "A") { if (os_ver == 'A') os_ver = 'AMI'; audit(AUDIT_OS_NOT, "Amazon Linux AMI", "Amazon Linux " + os_ver); } if (!get_kb_item("Host/AmazonLinux/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING); flag = 0; if (rpm_check(release:"ALA", reference:"clamav-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-data-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-data-empty-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-db-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-debuginfo-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-devel-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-filesystem-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-lib-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-milter-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-milter-sysvinit-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-scanner-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-scanner-sysvinit-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-server-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-server-sysvinit-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamav-update-0.98.5-1.10.amzn1")) flag++; if (rpm_check(release:"ALA", reference:"clamd-0.98.5-1.10.amzn1")) flag++; if (flag) { if (report_verbosity > 0) security_note(port:0, extra:rpm_report_get()); else security_note(0); exit(0); } else { tested = pkg_tests_get(); if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested); else audit(AUDIT_PACKAGE_NOT_INSTALLED, "clamav / clamav-data / clamav-data-empty / clamav-db / etc"); }
NASL family SuSE Local Security Checks NASL id SUSE_11_CLAMAV-141125.NASL description clamav was updated to version 0.98.5 to fix three security issues and several non-security issues. These security issues have been fixed : - Crash when scanning maliciously crafted yoda last seen 2020-06-05 modified 2014-12-06 plugin id 79760 published 2014-12-06 reporter This script is Copyright (C) 2014-2020 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/79760 title SuSE 11.3 Security Update : clamav (SAT Patch Number 10016) code #%NASL_MIN_LEVEL 80502 # # (C) Tenable Network Security, Inc. # # The descriptive text and package checks in this plugin were # extracted from SuSE 11 update information. The text itself is # copyright (C) Novell, Inc. # if (NASL_LEVEL < 3000) exit(0); include("compat.inc"); if (description) { script_id(79760); script_version("1.2"); script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/04"); script_cve_id("CVE-2013-6497", "CVE-2014-9050"); script_name(english:"SuSE 11.3 Security Update : clamav (SAT Patch Number 10016)"); script_summary(english:"Checks rpm output for the updated package"); script_set_attribute( attribute:"synopsis", value:"The remote SuSE 11 host is missing a security update." ); script_set_attribute( attribute:"description", value: "clamav was updated to version 0.98.5 to fix three security issues and several non-security issues. These security issues have been fixed : - Crash when scanning maliciously crafted yoda's crypter files. (CVE-2013-6497) - Heap-based buffer overflow when scanning crypted PE files. (CVE-2014-9050) - Crash when using 'clamscan -a'. These non-security issues have been fixed : - Support for the XDP file format and extracting, decoding, and scanning PDF files within XDP files. - Addition of shared library support for LLVM versions 3.1 - 3.5 for the purpose of just-in-time(JIT) compilation of ClamAV bytecode signatures. - Enhancements to the clambc command line utility to assist ClamAV bytecode signature authors by providing introspection into compiled bytecode programs. - Resolution of many of the warning messages from ClamAV compilation. - Improved detection of malicious PE files. - ClamAV 0.98.5 now works with OpenSSL in FIPS compliant mode. (bnc#904207) - Fix server socket setup code in clamd. (bnc#903489) - Change updateclamconf to prefer the state of the old config file even for commented-out options. (bnc#903719) - Fix infinite loop in clamdscan when clamd is not running. - Fix buffer underruns when handling multi-part MIME email attachments. - Fix configuration of OpenSSL on various platforms. - Fix linking issues with libclamunrar." ); script_set_attribute( attribute:"see_also", value:"https://bugzilla.novell.com/show_bug.cgi?id=903489" ); script_set_attribute( attribute:"see_also", value:"https://bugzilla.novell.com/show_bug.cgi?id=903719" ); script_set_attribute( attribute:"see_also", value:"https://bugzilla.novell.com/show_bug.cgi?id=904207" ); script_set_attribute( attribute:"see_also", value:"https://bugzilla.novell.com/show_bug.cgi?id=906077" ); script_set_attribute( attribute:"see_also", value:"https://bugzilla.novell.com/show_bug.cgi?id=906770" ); script_set_attribute( attribute:"see_also", value:"http://support.novell.com/security/cve/CVE-2013-6497.html" ); script_set_attribute( attribute:"see_also", value:"http://support.novell.com/security/cve/CVE-2014-9050.html" ); script_set_attribute(attribute:"solution", value:"Apply SAT patch number 10016."); script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:suse_linux:11:clamav"); script_set_attribute(attribute:"cpe", value:"cpe:/o:novell:suse_linux:11"); script_set_attribute(attribute:"patch_publication_date", value:"2014/11/25"); script_set_attribute(attribute:"plugin_publication_date", value:"2014/12/06"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2014-2020 Tenable Network Security, Inc."); script_family(english:"SuSE Local Security Checks"); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/local_checks_enabled", "Host/cpu", "Host/SuSE/release", "Host/SuSE/rpm-list"); exit(0); } include("audit.inc"); include("global_settings.inc"); include("rpm.inc"); if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED); release = get_kb_item("Host/SuSE/release"); if (isnull(release) || release !~ "^(SLED|SLES)11") audit(AUDIT_OS_NOT, "SuSE 11"); if (!get_kb_item("Host/SuSE/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING); cpu = get_kb_item("Host/cpu"); if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH); if (cpu !~ "^i[3-6]86$" && "x86_64" >!< cpu && "s390x" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "SuSE 11", cpu); pl = get_kb_item("Host/SuSE/patchlevel"); if (isnull(pl) || int(pl) != 3) audit(AUDIT_OS_NOT, "SuSE 11.3"); flag = 0; if (rpm_check(release:"SLED11", sp:3, cpu:"i586", reference:"clamav-0.98.5-0.5.1")) flag++; if (rpm_check(release:"SLED11", sp:3, cpu:"x86_64", reference:"clamav-0.98.5-0.5.1")) flag++; if (rpm_check(release:"SLES11", sp:3, reference:"clamav-0.98.5-0.5.1")) flag++; if (flag) { if (report_verbosity > 0) security_warning(port:0, extra:rpm_report_get()); else security_warning(0); exit(0); } else audit(AUDIT_HOST_NOT, "affected");
NASL family Debian Local Security Checks NASL id DEBIAN_DLA-95.NASL description Two bugs were discovered in clamav and are fixed by this release. One issue is in clamscan, the command line anti-virus scanner included in the package, which could lead to crashes when scanning certain files. (CVE-2013-6497) The second issue is in libclamav which caused a heap buffer overflow when scanning a specially crafted y0da Crypter obfuscated PE file. (CVE-2014-9050) If you use clamav, we highly recommend that you upgrade to this version. NOTE: Tenable Network Security has extracted the preceding description block directly from the DLA security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues. last seen 2020-03-17 modified 2015-03-26 plugin id 82240 published 2015-03-26 reporter This script is Copyright (C) 2015-2020 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/82240 title Debian DLA-95-1 : clamav security update NASL family Mandriva Local Security Checks NASL id MANDRIVA_MDVSA-2015-166.NASL description Updated clamav packages fix security vulnerabilities : ClamAV 0.98.6 is a maintenance release to fix some bugs, some of them being security bugs : Certain JavaScript files causes ClamAV to segfault when scanned with the -a (list archived files) (CVE-2013-6497). A heap buffer overflow was reported in ClamAV when scanning a specially crafted y0da Crypter obfuscated PE file (CVE-2014-9050). Fix a heap out of bounds condition with crafted Yoda last seen 2020-06-01 modified 2020-06-02 plugin id 82419 published 2015-03-30 reporter This script is Copyright (C) 2015-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/82419 title Mandriva Linux Security Advisory : clamav (MDVSA-2015:166) NASL family Misc. NASL id CLAMAV_0_98_5.NASL description According to its version, the ClamAV clamd antivirus daemon on the remote host is prior to 0.98.5. It is, therefore, potentially affected by the following vulnerabilities : - An error exists related to using the last seen 2020-06-01 modified 2020-06-02 plugin id 79388 published 2014-11-21 reporter This script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/79388 title ClamAV < 0.98.5 Multiple Vulnerabilities NASL family Fedora Local Security Checks NASL id FEDORA_2014-15473.NASL description ClamAV 0.98.5 ============= ClamAV 0.98.5 also includes these new features and bug fixes : - Support for the XDP file format and extracting, decoding, and scanning PDF files within XDP files. Addition of shared library support for LLVM versions 3.1 - 3.5 for the purpose of just-in-time(JIT) compilation of ClamAV bytecode signatures. Andreas Cadhalpun submitted the patch implementing this support. - Enhancements to the clambc command line utility to assist ClamAV bytecode signature authors by providing introspection into compiled bytecode programs. - Resolution of many of the warning messages from ClamAV compilation. - Improved detection of malicious PE files. - Security fix for ClamAV crash when using last seen 2020-03-17 modified 2014-11-24 plugin id 79399 published 2014-11-24 reporter This script is Copyright (C) 2014-2020 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/79399 title Fedora 20 : clamav-0.98.5-1.fc20 (2014-15473) NASL family SuSE Local Security Checks NASL id OPENSUSE-2014-736.NASL description clamav was updated to version 0.98.5 to fix two security issues. These security issues were fixed : - Segmentation fault when processing certain files (CVE-2013-6497). - Heap-based buffer overflow when scanning crypted PE files (CVE-2014-9050). The following non-security issues were fixed : - Support for the XDP file format and extracting, decoding, and scanning PDF files within XDP files. - Addition of shared library support for LLVM versions 3.1 - 3.5 for the purpose of just-in-time(JIT) compilation of ClamAV bytecode signatures. - Enhancements to the clambc command line utility to assist ClamAV bytecode signature authors by providing introspection into compiled bytecode programs. - Resolution of many of the warning messages from ClamAV compilation. - Improved detection of malicious PE files. - ClamAV 0.98.5 now works with OpenSSL in FIPS compliant mode (bnc#904207). - Fix server socket setup code in clamd (bnc#903489). - Change updateclamconf to prefer the state of the old config file even for commented-out options (bnc#903719). last seen 2020-06-05 modified 2014-12-06 plugin id 79754 published 2014-12-06 reporter This script is Copyright (C) 2014-2020 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/79754 title openSUSE Security Update : clamav (openSUSE-SU-2014:1560-1) NASL family Fedora Local Security Checks NASL id FEDORA_2014-15434.NASL description ClamAV 0.98.5 ============= ClamAV 0.98.5 also includes these new features and bug fixes : - Support for the XDP file format and extracting, decoding, and scanning PDF files within XDP files. Addition of shared library support for LLVM versions 3.1 - 3.5 for the purpose of just-in-time(JIT) compilation of ClamAV bytecode signatures. Andreas Cadhalpun submitted the patch implementing this support. - Enhancements to the clambc command line utility to assist ClamAV bytecode signature authors by providing introspection into compiled bytecode programs. - Resolution of many of the warning messages from ClamAV compilation. - Improved detection of malicious PE files. - Security fix for ClamAV crash when using last seen 2020-03-17 modified 2014-12-07 plugin id 79772 published 2014-12-07 reporter This script is Copyright (C) 2014-2020 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/79772 title Fedora 21 : clamav-0.98.5-1.fc21 (2014-15434) NASL family Ubuntu Local Security Checks NASL id UBUNTU_USN-2488-2.NASL description USN-2488-1 fixed a vulnerability in ClamAV for Ubuntu 14.10, Ubuntu 14.04 LTS, and Ubuntu 12.04 LTS. This update provides the corresponding update for Ubuntu 10.04 LTS. Sebastian Andrzej Siewior discovered that ClamAV incorrectly handled certain upack packer files. An attacker could possibly use this issue to cause ClamAV to crash, resulting in a denial of service, or possibly execute arbitrary code. Note that Tenable Network Security has extracted the preceding description block directly from the Ubuntu security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues. last seen 2020-06-01 modified 2020-06-02 plugin id 81341 published 2015-02-13 reporter Ubuntu Security Notice (C) 2015-2019 Canonical, Inc. / NASL script (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/81341 title Ubuntu 10.04 LTS : clamav vulnerability (USN-2488-2) NASL family Mandriva Local Security Checks NASL id MANDRIVA_MDVSA-2014-217.NASL description ClamAV 0.98.5 addresses several reported potential security bugs. Certain JavaScript files causes ClamAV to segfault when scanned with the -a (list archived files) (CVE-2013-6497). last seen 2020-06-01 modified 2020-06-02 plugin id 79367 published 2014-11-21 reporter This script is Copyright (C) 2014-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/79367 title Mandriva Linux Security Advisory : clamav (MDVSA-2014:217) NASL family Fedora Local Security Checks NASL id FEDORA_2014-15463.NASL description ClamAV 0.98.5 ============= ClamAV 0.98.5 also includes these new features and bug fixes : - Support for the XDP file format and extracting, decoding, and scanning PDF files within XDP files. Addition of shared library support for LLVM versions 3.1 - 3.5 for the purpose of just-in-time(JIT) compilation of ClamAV bytecode signatures. Andreas Cadhalpun submitted the patch implementing this support. - Enhancements to the clambc command line utility to assist ClamAV bytecode signature authors by providing introspection into compiled bytecode programs. - Resolution of many of the warning messages from ClamAV compilation. - Improved detection of malicious PE files. - Security fix for ClamAV crash when using last seen 2020-03-17 modified 2014-11-28 plugin id 79607 published 2014-11-28 reporter This script is Copyright (C) 2014-2020 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/79607 title Fedora 19 : clamav-0.98.5-1.fc19 (2014-15463)
References
- http://blog.clamav.net/2014/11/clamav-0985-has-been-released.html
- http://lists.fedoraproject.org/pipermail/package-announce/2014-November/144754.html
- http://lists.fedoraproject.org/pipermail/package-announce/2014-November/144979.html
- http://lists.opensuse.org/opensuse-security-announce/2014-12/msg00003.html
- http://lists.opensuse.org/opensuse-security-announce/2014-12/msg00006.html
- http://lists.opensuse.org/opensuse-security-announce/2014-12/msg00007.html
- http://secunia.com/advisories/59645
- http://secunia.com/advisories/60150
- http://www.mandriva.com/security/advisories?name=MDVSA-2014:217
- http://www.openwall.com/lists/oss-security/2014/11/19/2
- http://www.openwall.com/lists/oss-security/2014/11/19/5
- http://www.securityfocus.com/bid/71178
- http://www.ubuntu.com/usn/USN-2423-1
- http://www.ubuntu.com/usn/USN-2488-2
- https://bugzilla.clamav.net/show_bug.cgi?id=11088
- https://bugzilla.redhat.com/show_bug.cgi?id=1138101
- https://exchange.xforce.ibmcloud.com/vulnerabilities/98804