PHP EVAL - 修复不安全因素

时间:2012-06-01 03:17:50

标签: php eval

我们有一个系统必须执行用户输入提供的计算。

我发现做这些计算之一的最简单方法是eval - 试图找出一个解析器:

(3 + 6 ) / 2 + 27 * 5 / 2

看起来很难。如果有人有解决方案 - 我会很高兴听到它。

假设你要使用EVAL(我知道它的可怕功能),允许他们在那个盒子里输入任何他们想要的内容将是一个主要的不安全因素。

所以,我提出了一个问题,如果我做了一个正则表达式除去数字,标准运算符(+ - / *)和括号之外的所有东西,比如

$equation = preg_replace( '/[^0-9+-\/*()]/', '', $input_equation );
$result = eval( $equation );

系统可能发生任何伤害吗?

2 个答案:

答案 0 :(得分:4)

我最近使用PEDMAS compliant interpreter函数对BCMath进行了编码:

function BC($string, $precision = 32)
{
    if (extension_loaded('bcmath') === true)
    {
        if (is_array($string) === true)
        {
            if ((count($string = array_slice($string, 1)) == 3) && (bcscale($precision) === true))
            {
                $callback = array('^' => 'pow', '*' => 'mul', '/' => 'div', '%' => 'mod', '+' => 'add', '-' => 'sub');

                if (array_key_exists($operator = current(array_splice($string, 1, 1)), $callback) === true)
                {
                    $x = 1;
                    $result = @call_user_func_array('bc' . $callback[$operator], $string);

                    if ((strcmp('^', $operator) === 0) && (($i = fmod(array_pop($string), 1)) > 0))
                    {
                        $y = BC(sprintf('((%1$s * %2$s ^ (1 - %3$s)) / %3$s) - (%2$s / %3$s) + %2$s', $string = array_shift($string), $x, $i = pow($i, -1)));

                        do
                        {
                            $x = $y;
                            $y = BC(sprintf('((%1$s * %2$s ^ (1 - %3$s)) / %3$s) - (%2$s / %3$s) + %2$s', $string, $x, $i));
                        }

                        while (BC(sprintf('%s > %s', $x, $y)));
                    }

                    if (strpos($result = bcmul($x, $result), '.') !== false)
                    {
                        $result = rtrim(rtrim($result, '0'), '.');

                        if (preg_match(sprintf('~[.][9]{%u}$~', $precision), $result) > 0)
                        {
                            $result = (strncmp('-', $result, 1) === 0) ? bcsub($result, 1, 0) : bcadd($result, 1, 0);
                        }

                        else if (preg_match(sprintf('~[.][0]{%u}[1]$~', $precision - 1), $result) > 0)
                        {
                            $result = bcmul($result, 1, 0);
                        }
                    }

                    return $result;
                }

                return intval(version_compare(call_user_func_array('bccomp', $string), 0, $operator));
            }

            $string = array_shift($string);
        }

        $string = str_replace(' ', '', str_ireplace('e', ' * 10 ^ ', $string));

        while (preg_match('~[(]([^()]++)[)]~', $string) > 0)
        {
            $string = preg_replace_callback('~[(]([^()]++)[)]~', __METHOD__, $string);
        }

        foreach (array('\^', '[\*/%]', '[\+-]', '[<>]=?|={1,2}') as $operator)
        {
            while (preg_match(sprintf('~(?<![0-9])(%1$s)(%2$s)(%1$s)~', '[+-]?(?:[0-9]++(?:[.][0-9]*+)?|[.][0-9]++)', $operator), $string) > 0)
            {
                $string = preg_replace_callback(sprintf('~(?<![0-9])(%1$s)(%2$s)(%1$s)~', '[+-]?(?:[0-9]++(?:[.][0-9]*+)?|[.][0-9]++)', $operator), __METHOD__, $string, 1);
            }
        }
    }

    return (preg_match('~^[+-]?[0-9]++(?:[.][0-9]++)?$~', $string) > 0) ? $string : false;
}

它支持以下运算符:

  • ^(pow)
  • *
  • /
  • %(模数)
  • +
  • -
  • ===<<=>>=(比较)

你这样称呼它:

echo BC('(3 + 6 ) / 2 + 27 * 5 / 2');

我这样做了,所以我有一个简单的方法来执行任意长度计算,但在你的情况下,你也可以删除所有空格并使用以下正则表达式验证字符:

if (preg_match('~^(?:[0-9()*/%+-<>=]+)$~', $expression) > 0) {
    // safe to eval()
}

答案 1 :(得分:0)

这对我来说似乎更简单,但我还没有寻找原生的PHP解决方案。我发布它只是为了踢。

我没有使用eval,而是使用exec来调用bc并让bc为我完成所有工作(假设您&#39) ;重新使用Linux机器。)

所以,你做的事情(非常未经测试):

$user_input = '(3 + 6 ) / 2 + 27 * 5 / 2';
$return = exec( 'echo "scale=1; ' . escapeshellarg( $user_input) . '" | bc', $output, $retval);

$calculation = $output[0];
if( !is_numeric( $calculation)) {
    echo "Invalid input!";
}
echo $calculation; // Outputs 72