php正确禁用eval函数
eval()针对php安全来说具有很大的杀伤力,一般不用的情况下,为了防止<?php eval($_POST[cmd]);?> 这样的小马砸门,需要禁止掉的.
网上好多说使用disable_functions禁止掉eval是错误的,其实eval()是无法用php.ini中的disable_functions禁止掉的because eval() is a language construct and not a function,eval是zend的,不是PHP_FUNCTION 函数.
php怎么禁止eval:
如果想禁掉eval可以用php的扩展Suhosin
安装Suhosin后,在php.ini中load进来Suhosin.so加上suhosin.executor.disable_eval = on即可.
ps:http://www.ileiming.com/php%E7%A6%81%E7%94%A8eval%E7%9A%84%E8%AF%AF%E5%8C%BA.html
网上好多说使用disable_functions禁止掉eval是错误的,其实eval()是无法用php.ini中的disable_functions禁止掉的because eval() is a language construct and not a function,eval是zend的,不是PHP_FUNCTION 函数.
php怎么禁止eval:
如果想禁掉eval可以用php的扩展Suhosin
安装Suhosin后,在php.ini中load进来Suhosin.so加上suhosin.executor.disable_eval = on即可.
ps:http://www.ileiming.com/php%E7%A6%81%E7%94%A8eval%E7%9A%84%E8%AF%AF%E5%8C%BA.html
评论: