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

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

缺陷编号:wooyun-2014-083096

漏洞标题:ThinkSNS微吧储存型XSS(无视WAF,无过滤插入任意代码)

相关厂商:ThinkSNS

漏洞作者: 龟兔赛跑

提交时间:2014-11-13 14:33

修复时间:2014-12-30 14:44

公开时间:2014-12-30 14:44

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

危害等级:中

自评Rank:10

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

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2014-11-13: 细节已通知厂商并且等待厂商处理中
2014-11-18: 厂商主动忽略漏洞,细节向第三方安全合作伙伴开放
2015-01-12: 细节向核心白帽子及相关领域专家公开
2015-01-22: 细节向普通白帽子公开
2015-02-01: 细节向实习白帽子公开
2014-12-30: 细节向公众公开

简要描述:

ThinkSNS微吧储存型XSS(无视WAF,无任何过滤,可插入任意代码)
官网demo测试。

详细说明:

进入http://demo.thinksns.com/t3/weiba
发布新贴,
在正文里面输入HTML转码后的脚本,例如:

<script>alert(1);</script>


HTML编码后为:

&#60;&#115;&#99;&#114;&#105;&#112;&#116;&#62;&#97;&#108;&#101;&#114;&#116;&#40;&#49;&#41;&#59;&#60;&#47;&#115;&#99;&#114;&#105;&#112;&#116;&#62;


即为我们要加到正文的内容。

1.png


确定之后即可看到脚本被执行了。

2.png


看看代码:
apps/weiba/Lib/Action/IndexAction.class.php

413  	public function postDetail(){
414 $post_id = intval($_GET['post_id']);
415 $post_detail = D('weiba_post')->where('is_del=0 and post_id='.$post_id)->find();
416 if(!$post_detail || D('weiba')->where('weiba_id='.$post_detail['weiba_id'])->getField('is_del')) $this->error('帖子不存在或已被删除');
417 if(D('weiba_favorite')->where('uid='.$this->mid.' AND post_id='.$post_id)->find()){
418 $post_detail['favorite'] = 1;
419 }
420 if ( $post_detail['attach'] ){
421 $attachids = unserialize( $post_detail['attach'] );
422 $attachinfo = model('Attach')->getAttachByIds( $attachids );
423 foreach($attachinfo as $ak => $av) {
424 $_attach = array(
425 'attach_id' => $av['attach_id'],
426 'attach_name' => $av['name'],
427 'attach_url' => getImageUrl($av['save_path'].$av['save_name']),
428 'extension' => $av['extension'],
429 'size' => $av['size']
430 );
431 $post_detail['attachInfo'][$ak] = $_attach;
432 }
433 }
434 $post_detail['content'] = html_entity_decode($post_detail['content'], ENT_QUOTES, 'UTF-8');
435 $this->assign('post_detail',$post_detail);
436 //dump($post_detail);


帖子在存储的时候做了一次HTML解码,line 434在显示帖子的时候对content又做了一次html_entity_decode(), 导致HTML编码的脚本又恢复成了HTML。

漏洞证明:

http://demo.thinksns.com/t3/index.php?app=weiba&mod=Index&act=postDetail&post_id=2455


2.png

修复方案:

输出的时候不用再转码了吧

版权声明:转载请注明来源 龟兔赛跑@乌云


漏洞回应

厂商回应:

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

忽略时间:2014-12-30 14:44

厂商回复:

最新状态:

暂无