cmseasy前台sql盲注(绕过union,sleep等函数,无需登录,无防御)

- AV AC AU C I A
发布: 2025-04-13
修订: 2025-04-13

### 简要描述: cmseasy 前台sql盲注(绕过union,sleep等函数,无需登录,无防御) ### 详细说明: archive_act.php:(line:27-33) ``` } front::check_type($this->pagesize); $announcement = new announcement(); $this->view->announcements = $announcement->getrows(null, 10); $this->view->usergroupid = 1000; front::check_type(cookie::get('login_username'), 'safe'); front::check_type(cookie::get('login_password'), 'safe'); $this->view->showarchive = archive::getInstance()->getrow(front::get('aid')); $addcontentuser = new user(); $addcontentuser = $addcontentuser->getrow(array('userid' => $this->view->showarchive['userid'])); ``` 这里有一句: $this->view->showarchive = archive::getInstance()->getrow(front::get('aid')); 我们跟进去这个函数getrow: ``` function getrow($condition,$order='1 desc',$cols='*') { $this->condition($condition); return $this->rec_select_one($condition,'*',$order); } ``` 然后在看看这个函数condition: ``` function condition(&$condition) { if (isset($condition) &&is_array($condition)) { $_condition=array(); foreach ($condition as...

0%
暂无可用Exp或PoC
当前有0条受影响产品信息