blob: 9c249d91e2c4e0c8dbe31e3eafdc6d740b587c1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Disable functions - alias
--SKIPIF--
<?php if (!extension_loaded("snuffleupagus")) die "skip"; ?>
--INI--
sp.configuration_file={PWD}/config/config_disabled_functions_param_alias.ini
--FILE--
<?php
system("id");
shell_exec("id");
?>
--EXPECTF--
Fatal error: [snuffleupagus][disabled_function] Aborted execution on call of the function 'system', because of the the rule '1' in %a/disabled_functions_param_alias.php on line 2
|