I'm running PHP5.6 on ubuntu12.04 as apache 2.4 module Suhosin is installed from sources
Suhosin is enabled and I can see it in phpinfo() function output. I have these lines in the suhosin.ini:
suhosin.executor.disable_eval = On
suhosin.executor.disable_emodifier = On
And I can also see them enabled in phpinfo(). Both globally and locally.
But for some reason simple
eval('echo 5;');
just shows me the damn “5”!!!
Same does
preg_replace("/.*/e", "eval('echo 5, PHP_EOL;')", ".");
How do I enable that suhosin?