Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Exploits-HackingTools
[Top] [All Lists]

[NEWS] ClamAV libclamav PE WWPack Heap Overflow Vulnerability

Subject: [NEWS] ClamAV libclamav PE WWPack Heap Overflow Vulnerability
Date: 16 Apr 2008 17:33:29 +0200
The following security advisory is sent to the securiteam mailing list, and can 
be found at the SecuriTeam web site: http://www.securiteam.com
- - promotion

The SecuriTeam alerts list - Free, Accurate, Independent.

Get your security news from a reliable source.
http://www.securiteam.com/mailinglist.html 

- - - - - - - - -



  ClamAV libclamav PE WWPack Heap Overflow Vulnerability
------------------------------------------------------------------------


SUMMARY

 <http://www.clamav.net/> Clam AntiVirus is "a multi-platform GPL 
anti-virus toolkit. ClamAV is often integrated into e-mail gateways and 
used to scan e-mail traffic for viruses. It supports virus scanning for a 
wide variety of packed Portable Executable (PE) binaries. WWPack is one of 
the supported packers". Remote exploitation of a heap overflow 
vulnerability in Clam AntiVirus' ClamAV, as included in various vendors' 
operating system distributions, allows attackers to execute arbitrary code 
with the privileges of the affected process.

DETAILS

Vulnerable Systems:
 * ClamAV version 0.92.1

The vulnerability exists within the code responsible for reading in 
sections within a PE binary packed with the WWPack executable compressor. 
See the following excerpt from libclamav/pe.c:
  1879          dsize = max-min+headsize-exe_sections[nsections - 1].rsz;
  ....
  1883          if((dest = (char *) cli_calloc(dsize, sizeof(char))) == 
NULL) {
  ....
  1897          for(i = 0 ; i < (unsigned int)nsections-1; i++) {
  1898              if(exe_sections[i].rsz) {
  1899                  if(!cli_seeksect(desc, &exe_sections[i]) || 
(unsigned int) cli_readn(desc, dest + headsize + exe_sections[i].rva - 
min, exe_sections[i].rsz) != exe_sections[i].rsz) {

The size of the allocated heap buffer is calculated on line 1879 using 
several values that are under attacker control. The allocation takes place 
on line 1883. Within the loop, starting on line 1897, data is read into 
the allocated buffer (line 1899).

No validation is done to ensure that the resulting data is not written 
outside the bounds of the "dest" buffer. The "headsize", 
"exe_sections[i].rva", "min", and "exe_sections[i].rsz" values that are 
used for this operation are all under attacker control. As such, an 
exploitable heap corruption condition may occur.

Analysis:
Exploitation of this vulnerability results in the execution of arbitrary 
code with the privileges of the process using libclamav. In the case of 
the clamd program, this will result in code execution with the privileges 
of the clamav user. Unsuccessful exploitation results in the clamd process 
crashing.

Workaround:
Disabling the scanning of PE files will prevent exploitation.

  If using clamscan, this can be done by running clamscan with the 
'--no-pe' option.
  If using clamdscan, set the 'ScanPE' option in the clamd.conf file to 
'no'.

Disclosure Timeline:
03/04/2008 - Initial vendor notification
03/06/2008 - Initial vendor response
04/14/2008 - Coordinated public disclosure


ADDITIONAL INFORMATION

The information has been provided by iDefense Labs.
The original article can be found at:  
<http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=687> 
http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=687



======================================== 


This bulletin is sent to members of the SecuriTeam mailing list. 
To unsubscribe from the list, send mail with an empty subject line and body to: 
list-unsubscribe@securiteam.com 
In order to subscribe to the mailing list, simply forward this email to: 
list-subscribe@securiteam.com 


==================== 
==================== 

DISCLAIMER: 
The information in this bulletin is provided "AS IS" without warranty of any 
kind. 
In no event shall we be liable for any damages whatsoever including direct, 
indirect, incidental, consequential, loss of business profits or special 
damages. 




<Prev in Thread] Current Thread [Next in Thread>
  • [NEWS] ClamAV libclamav PE WWPack Heap Overflow Vulnerability, SecuriTeam <=