I have installed Suhosin on my dedicated CentOS server. centos6.7+php5.4.41+suhosin0.9.36
I would like to enable Suhosin's disable eval function. I went through the documentation and from what I understood, the best scenario was to add this in php.ini:
[suhosin]
suhosin.executor.eval.blacklist= phpinfo,passthru,exec,system,chroot,scandir,chgrp,chown
but it will not prevent eval from executing phpinfo(),<?php eval(phpinfo());?>
.
Really hoping someone can point out my mistake.