cmstop 远程代码执行漏洞(大众版)

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

### 简要描述: ### 详细说明: 具体代码分析 在search\controller\index.php中 search方法如下 public function search( ) { session_start( ); $limit = setting( "search", "limit" ); if ( $limit ) { if ( $_SESSION['last_search'] && TIME - $_SESSION['last_search'] < $limit ) { $this->showmessage( "搜索太频繁,请稍候再搜索" ); } $_SESSION['last_search'] = TIME; } $GLOBALS['_GET']['wd'] = preg_replace( "/\\s+/", " ", trim( $_GET['wd'] ) ); if ( empty( $_GET['wd'] ) ) { $this->showmessage( "请输入搜索关键词" ); } $data = $this->search->search( $_GET ); $multipage = $this->search->getPagin( ); //漏洞点,跟踪该对象 $this->template->assign( "wd", $_GET['wd'] ); $this->template->assign( "data", $data ); $this->template->assign( "multipage", $multipage ); $this->template->display( "search/list.html" ); } 在\search\model\search.php中找到 public function getPagin( ) { $requestUrl = request::get_url( ); $page = $_GET['page'] ? $_GET['page'] : 1; $multipage = pages( $this->total, $page, $this->pagesize, 3, $requestUrl ); //跟踪pages方法 return $multipage; }...

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