summaryrefslogtreecommitdiff
path: root/suhosin.ini
diff options
context:
space:
mode:
authorBen Fuhrmannek2014-11-18 20:49:30 +0100
committerBen Fuhrmannek2014-11-18 20:49:30 +0100
commitcc9ccec7297ebb1853e0fbca6ba9a686583e5a45 (patch)
treefa8112e1d79d535715b82358492beb2ca173edf2 /suhosin.ini
parent4f9e54ecca76a8fcfc0bb1bd5151c75103890b7a (diff)
Set default array index blacklist to '"+-<>;()
Diffstat (limited to 'suhosin.ini')
-rw-r--r--suhosin.ini15
1 files changed, 12 insertions, 3 deletions
diff --git a/suhosin.ini b/suhosin.ini
index 6887c09..f844b9e 100644
--- a/suhosin.ini
+++ b/suhosin.ini
@@ -338,6 +338,8 @@
338; specify the beginning of allowed URLs. (f.e.: php://stdin) If no whitelist is 338; specify the beginning of allowed URLs. (f.e.: php://stdin) If no whitelist is
339; specified, then the blacklist is evaluated. 339; specified, then the blacklist is evaluated.
340; 340;
341; Note: This setting deactivates suhosin.executor.include.blacklist.
342;
341;suhosin.executor.include.whitelist = 343;suhosin.executor.include.whitelist =
342; 344;
343 345
@@ -377,6 +379,8 @@
377; whitelist is empty the blacklist is evaluated, otherwise calling a function not 379; whitelist is empty the blacklist is evaluated, otherwise calling a function not
378; in the whitelist will terminate the script and get logged. 380; in the whitelist will terminate the script and get logged.
379; 381;
382; Note: This setting deactivates suhosin.executor.func.blacklist.
383;
380;suhosin.executor.func.whitelist = 384;suhosin.executor.func.whitelist =
381; 385;
382 386
@@ -402,6 +406,8 @@
402; calling a function not in the whitelist will terminate the script and get 406; calling a function not in the whitelist will terminate the script and get
403; logged. Please read the instructions carefully. 407; logged. Please read the instructions carefully.
404; 408;
409; Note: This setting deactivates suhosin.executor.eval.blacklist.
410;
405;suhosin.executor.eval.whitelist = 411;suhosin.executor.eval.whitelist =
406; 412;
407 413
@@ -901,6 +907,8 @@
901; In case some cookies should not be encrypted this is a comma separated list of 907; In case some cookies should not be encrypted this is a comma separated list of
902; cookies that do not get encrypted. All other cookies will be encrypted. 908; cookies that do not get encrypted. All other cookies will be encrypted.
903; 909;
910; Note: This setting deactivates suhosin.cookie.cryptlist.
911;
904;suhosin.cookie.plainlist = 912;suhosin.cookie.plainlist =
905; 913;
906 914
@@ -1197,12 +1205,11 @@
1197; suhosin.request.array_index_blacklist 1205; suhosin.request.array_index_blacklist
1198; ------------------------------------- 1206; -------------------------------------
1199; * Type: String 1207; * Type: String
1200; * Default: 1208; * Default: "'\"+-<>;()"
1201; * Example: ";-+"
1202; 1209;
1203; Defines a character blacklist for array indices not allowed in user input. 1210; Defines a character blacklist for array indices not allowed in user input.
1204; 1211;
1205;suhosin.request.array_index_blacklist = 1212;suhosin.request.array_index_blacklist = "'\"+-<>;()"
1206; 1213;
1207 1214
1208; suhosin.request.array_index_whitelist 1215; suhosin.request.array_index_whitelist
@@ -1213,6 +1220,8 @@
1213; 1220;
1214; Defines a character whitelist for array indices allowed in user input. 1221; Defines a character whitelist for array indices allowed in user input.
1215; 1222;
1223; Note: This setting deactivates suhosin.request.array_index_blacklist.
1224;
1216;suhosin.request.array_index_whitelist = 1225;suhosin.request.array_index_whitelist =
1217; 1226;
1218 1227