tipask注入漏洞

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

### 简要描述: sql注入漏洞(2次注入) ### 详细说明: 官方最新源码测试 在control中answer.php中 ``` * 追问模块---追问 */ function onappend() { $this->load("message"); $qid = intval($this->get[2]) ? $this->get[2] : intval($this->post['qid']); $aid = intval($this->get[3]) ? $this->get[3] : intval($this->post['aid']); $question = $_ENV['question']->get($qid); $answer = $_ENV['answer']->get($aid); if (!$question || !$answer) { $this->message("回答内容不存在!"); exit; } $viewurl = urlmap('question/view/' . $qid, 2); if (isset($this->post['submit'])) { //echo $this->user['username'];exit(); $_ENV['answer']->append($answer['id'], $this->user['username'], $this->user['uid'], $this->post['content']); if ($answer['authorid'] == $this->user['uid']) {//继续回答 $_ENV['message']->add($this->user['username'], $this->user['uid'], $question['authorid'], $this->user['username'] . '继续回答了您的问题:' . $question['title'], $this->post['content'] . '<br /> <a href="' . url('question/view/' . $qid, 1) . '">点击查看</a>'); $_ENV['doing']->add($this->user['uid'],...

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