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

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

缺陷编号:wooyun-2015-0111486

漏洞标题:TCcms 9.0 Sql Injection

相关厂商:teamcen.com

漏洞作者: 浅蓝

提交时间:2015-05-07 18:20

修复时间:2015-08-06 16:46

公开时间:2015-08-06 16:46

漏洞类型:SQL注射漏洞

危害等级:高

自评Rank:20

漏洞状态:厂商已经确认

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-05-07: 细节已通知厂商并且等待厂商处理中
2015-05-08: 厂商已经确认,细节仅向厂商公开
2015-05-11: 细节向第三方安全合作伙伴开放
2015-07-02: 细节向核心白帽子及相关领域专家公开
2015-07-12: 细节向普通白帽子公开
2015-07-22: 细节向实习白帽子公开
2015-08-06: 细节向公众公开

简要描述:

rt

详细说明:

/app/model/newsAction.class.php
108行开始

public function getCountByUid() {
$info = $this->query("select count(*) as total from tc_news where uid=".$_COOKIE["userId"]);
return $info[0]["total"];
}
}


再看看getCountByUid函数被应用在何处
/app/controller/user.class.php
228行开始

/* 会员中心页 */
public function home() {
$this->userIsLogin ();
$newsObj = M ( "news" );
$newsTotal = $newsObj->getCountByUid ();
$this->setValue ( "newsTotal", $newsTotal );
$this->forward ( "user/home.html" );
}


SP4]4JTM31}5]ZE495_E3SM.png

漏洞证明:

/app/model/newsAction.class.php
108行开始

public function getCountByUid() {
$info = $this->query("select count(*) as total from tc_news where uid=".$_COOKIE["userId"]);
return $info[0]["total"];
}
}


再看看getCountByUid函数被应用在何处
/app/controller/user.class.php
228行开始

/* 会员中心页 */
public function home() {
$this->userIsLogin ();
$newsObj = M ( "news" );
$newsTotal = $newsObj->getCountByUid ();
$this->setValue ( "newsTotal", $newsTotal );
$this->forward ( "user/home.html" );
}


SP4]4JTM31}5]ZE495_E3SM.png

修复方案:

过滤

版权声明:转载请注明来源 浅蓝@乌云


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:10

确认时间:2015-05-08 16:45

厂商回复:

FIXED

最新状态:

暂无