phpok最新版sql注入(盲注)

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

### 简要描述: RT ### 详细说明: 在framework/www/open_control.php中: ``` //网址列表,这里读的是项目的网址列表 function url_f() { $id = $this->get("id"); if(!$id) $id = "content"; $this->assign("id",$id); $pid = $this->get("pid"); if($pid) { $p_rs = $this->model('project')->get_one($pid); $type = $this->get("type"); if(!$p_rs) { error_open("项目不存在"); } if($type == "cate" && $p_rs["cate"]) { $catelist = $this->model("cate")->get_all($p_rs['site_id'],$p_rs['cate']); $this->assign("rslist",$catelist); $this->assign("p_rs",$p_rs); $this->view("open_url_cate"); } else { $pageid = $this->get($this->config["pageid"],"int"); $psize = $this->config["psize"]; if(!$psize) $psize = 20; if(!$pageid) $pageid = 1; $offset = ($pageid - 1) * $psize; $pageurl = $this->url("open","url","pid=".$pid."&type=list&id=".$id); $condition = "l.site_id='".$p_rs["site_id"]."' AND l.project_id='".$pid."' AND l.parent_id='0' "; $keywords = $this->get("keywords"); if($keywords) { $condition .= " AND l.title LIKE '%".$keywords."%' "; $pageurl...

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