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

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

缺陷编号:wooyun-2014-048877

漏洞标题:TCCMS SQL注入 一个文件多处注入之二

相关厂商:teamcen.com

漏洞作者: what_news

提交时间:2014-01-14 16:11

修复时间:2014-01-19 16:12

公开时间:2014-01-19 16:12

漏洞类型:SQL注射漏洞

危害等级:中

自评Rank:10

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

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

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

简要描述:

之前看了厂商的回复说的是文章列表那个页面有问题,这次我提交的是图片列表页面存在注入

详细说明:

app\controller\picture.class.php
代码如下

public function all() {
$_Obj = M($this->objName);
$categoryObj = M("category");
$_Obj->pageSize = 20;
$where = "1=1";
$key = $_POST['key'];
$cid = $_GET['cid'];
if ($key != "") {
$where .= " and id = '" . $key . "' or title like '%$key%'";
}
if (!empty($cid) && $cid != "") {
$where .= " and classid = " . $cid; //没处理存在注入
}
if ($_GET["type"] == "user") {
$where .= " and uid = " . $_COOKIE['userId']; //没处理存在注入
}
if (isset($_GET['yz'])) {
$where .= " AND yz =".$_GET['yz']; //没处理存在注入
}
if (isset($_GET['levels'])) {
$where .= " AND levels =".$_GET['levels'];//没处理存在注入
}
if (isset($_GET['special'])) {
$where .= " AND special =".$_GET['special'];//没处理存在注入
}
if (isset($_GET['top'])) {
$where .= " AND top =".$_GET['top']; //没处理存在注入
}
if (isset($_GET['flashpic'])) {
$where .= " AND flashpic =".$_GET['flashpic']; //没处理存在注入
}
$_Obj->setSortId();
$orderBy = $_GET['sortId']; //没处理存在注入
$_Obj->isAdmin = 1;
$_objAry = $_Obj->where($where)->orderby("id ".$orderBy)->getList();
$pidSelectStr = $categoryObj->getTree($categoryObj, 2,false);
$this->setValue("pidSelectStr", $pidSelectStr);
$this->setValue("categoryObj", $categoryObj);
$this->setValue("objAry", $_objAry);
$this->setValue("Obj", $_Obj);
$this->setValue("action", "list");
$this->forward("user/pictureList.html");
}

漏洞证明:

本地搭建测试 不需要登录就可以直接注入
先看下cid参数
http://192.168.1.103/index.php?ac=picture_all&cid=6 AND 1=1

1=1.png


http://192.168.1.103/index.php?ac=picture_all&cid=6 AND 1=2

1=2.png


接着看下cookie['userId']; 不需要登录就可以直接注入

USER 1=1.png


USER 1=2.png


....另一些参数也存在同样的注入问题

修复方案:

对参数进行过滤

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


漏洞回应

厂商回应:

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

忽略时间:2014-01-19 16:12

厂商回复:

最新状态:

暂无