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]

[UNIX] libremail Format String (DEBUG, pop.c)

Subject: [UNIX] libremail Format String (DEBUG, pop.c)
Date: 26 Dec 2005 18:45:19 +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 

- - - - - - - - -



  libremail Format String (DEBUG, pop.c)
------------------------------------------------------------------------


SUMMARY

 <http://libremail.tuxfamily.org/> libremail is "a set of command line 
mail tools, it includes several clients, and allows to filter mails".

A format string vulnerability has been found in libremail's POP handling 
routines when the library has been set to run in DEBUG mode, the 
vulnerability can be exploited by remote attackers to cause the library to 
execute arbitrary code.

DETAILS

Vulnerable Systems:
 * libremail version 1.1.0 and prior

There is a format string vulnerability in pop.c:

Vulnerable code:
[...]
void lire_pop ()
{
    int posbuf;
    // initialisation
    posbuf = 0;

    // lecture jusqu'en fin de ligne ou de buffer
    do
        recv (sockfd, buf_lect + posbuf, 1, 0);
    while (buf_lect [posbuf++] != 'n' && posbuf < sz_buflect);

    // terminer la chaine de caract res lue (on supprime rn)
    if (posbuf > 1 && buf_lect [posbuf - 2] == 'r')
        buf_lect [posbuf - 2] = '\0';

    else
        buf_lect [posbuf - 1] = '\0';

    #ifdef DEBUG
        putchar ('<');
        printf (buf_lect);
    #endif
}

It could be exploited by tricking a user into connecting to a malicious 
POP server, or by sending a malicious mail (if the user reads it through a 
POP server), however it requires that debug mode is activated (not default 
setting).

Vendor Status:
The vendor has published updated sources:
 <http://libremail.tuxfamily.org/en/dersources.htm> 
http://libremail.tuxfamily.org/en/dersources.htm


ADDITIONAL INFORMATION

The original article can be found at:
   <http://www.zone-h.org/en/advisories/read/id=8527/> 
http://www.zone-h.org/en/advisories/read/id=8527/



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


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>
  • [UNIX] libremail Format String (DEBUG, pop.c), SecuriTeam <=