<?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.';'); }
时间: 2023-09-18 11:11:30 浏览: 224
PHP函数之error_reporting(E_ALL ^ E_NOTICE)详细说明
这是一个PHP代码段,它允许用户输入一个数学表达式,并使用eval()函数计算这个表达式的值并输出结果。如果用户未提供“c”参数,则将显示代码源。否则,它将检查表达式的长度是否超过80个字符,并使用黑名单检查表达式中是否包含不允许使用的字符。然后,它将使用白名单检查表达式中使用的函数是否允许使用。如果表达式中包含不允许使用的字符或函数,则将输出相应的错误消息。如果表达式符合要求,将使用eval()函数计算表达式的值并输出结果。由于使用eval()函数存在安全隐患,因此不建议在生产环境中使用此代码段。
阅读全文