From: Silvio Rhatto Date: Mon, 27 Mar 2017 17:57:02 +0000 (-0300) Subject: Removes syslog from disable_functions X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=4f250cde2ab2bde6b2dd75aa362783b5489f4dfc;p=puppet-php.git Removes syslog from disable_functions --- diff --git a/manifests/hardened.pp b/manifests/hardened.pp index 6439b94..5340dd7 100644 --- a/manifests/hardened.pp +++ b/manifests/hardened.pp @@ -2,7 +2,7 @@ class php::hardened { php::config { 'allow_url_fopen' : value => 'Off'; 'allow_url_include' : value => 'Off'; - 'disable_functions' : value => 'phpinfo, system, exec, shell_exec, passthru, proc_get_status, proc_open, popen, proc_close, proc_nice, proc_terminate, pcntl_exec, proc_open, show_source, dl, symlink, syslog, system_exec'; + 'disable_functions' : value => 'phpinfo, system, exec, shell_exec, passthru, proc_get_status, proc_open, popen, proc_close, proc_nice, proc_terminate, pcntl_exec, proc_open, show_source, dl, symlink, system_exec'; #value => 'disable_functions = phpinfo, system, exec, shell_exec, passthru, proc_get_status, proc_open, popen, proc_close, proc_nice, proc_terminate, pcntl_exec, proc_open, curl_init, parse_ini_file, show_source, dl, symlink, syslog, mail, system_exec', } }