1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
|
;extension=suhosin.so
; =====================
; Logging Configuration
; =====================
; suhosin.log.syslog
; ------------------
; * Type: Integer
; * Default: S_ALL & ~S_SQL
;
; Defines what classes of security alerts are logged to the syslog daemon.
; Logging of errors of the class S_MEMORY are always logged to syslog, no matter
; what this configuration says, because a corrupted heap could mean that the
; other logging options will malfunction during the logging process.
;
; +------------+-----------+----------------------------------------------------+
; | Constant | Value | Description |
; +============+===========+====================================================+
; | S_MEMORY | 1 | All canary violations and the safe unlink |
; | | | protection use this class |
; +------------+-----------+----------------------------------------------------+
; | S_MISC | 2 | All log messages (f.e. format string protection) |
; | | | that do not fit in other classes use this class |
; +------------+-----------+----------------------------------------------------+
; | S_VARS | 4 | All variable filters trigger this class |
; +------------+-----------+----------------------------------------------------+
; | S_FILES | 8 | All violations triggered by the uploaded files |
; | | | filter use this class |
; +------------+-----------+----------------------------------------------------+
; | S_INCLUDE | 16 | The protection against malicious include filenames |
; | | | use this class |
; +------------+-----------+----------------------------------------------------+
; | S_SQL | 32 | Failed SQL queries are logged with this class |
; | | | (not yet supported in Suhosin BETA) |
; +------------+-----------+----------------------------------------------------+
; | S_EXECUTOR | 64 | The execution depth protection uses this logging |
; | | | class |
; +------------+-----------+----------------------------------------------------+
; | S_MAIL | 128 | The mail() header newline protection uses this |
; | | | logging class |
; +------------+-----------+----------------------------------------------------+
; | S_SESSION | 256 | The transparent session protection uses this |
; | | | logging class |
; +------------+-----------+----------------------------------------------------+
; | S_ALL | 511 | Combines all classes |
; +------------+-----------+----------------------------------------------------+
;
; Using constant names is only supported with the Suhosin-Patch. If in doubt, use
; the numeric value, e.g. `suhosin.log.syslog=511`.
;
;suhosin.log.syslog = S_ALL & ~S_SQL
;
; suhosin.log.syslog.facility
; ---------------------------
; * Type: Integer
; * Default: LOG_USER
;
; Defines the syslog facility that is used when ALERTs are logged to syslog.
; Depending on your system type (syslogd) the following facilities are available.
; Please check your system's include header if the values are the same for your
; syslogd.
;
; +--------------+-------+
; | Constant | Value |
; +==============+=======+
; | LOG_KERN | 8 |
; +--------------+-------+
; | LOG_USER | 9 |
; +--------------+-------+
; | LOG_MAIL | 10 |
; +--------------+-------+
; | LOG_DAEMON | 11 |
; +--------------+-------+
; | LOG_AUTH | 12 |
; +--------------+-------+
; | LOG_SYSLOG | 13 |
; +--------------+-------+
; | LOG_LPR | 14 |
; +--------------+-------+
; | LOG_NEWS | 15 |
; +--------------+-------+
; | LOG_UUCP | 16 |
; +--------------+-------+
; | LOG_CRON | 17 |
; +--------------+-------+
; | LOG_AUTHPRIV | 18 |
; +--------------+-------+
; | LOG_LOCAL0 | 24 |
; +--------------+-------+
; | LOG_LOCAL1 | 25 |
; +--------------+-------+
; | LOG_LOCAL2 | 26 |
; +--------------+-------+
; | LOG_LOCAL3 | 27 |
; +--------------+-------+
; | LOG_LOCAL4 | 28 |
; +--------------+-------+
; | LOG_LOCAL5 | 29 |
; +--------------+-------+
; | LOG_LOCAL6 | 30 |
; +--------------+-------+
; | LOG_LOCAL7 | 31 |
; +--------------+-------+
;
;suhosin.log.syslog.facility = LOG_USER
;
; suhosin.log.syslog.priority
; ---------------------------
; * Type: Integer
; * Default: LOG_ALERT
;
; Defines the syslog priority that is used when ALERTs are logged to syslog.
; Depending on your system type (syslogd) the following priorities are available.
; Please check your system's include header if the values are the same for your
; syslogd.
;
; +------------+-------+
; |Constant | Value |
; +============+=======+
; |LOG_EMERG | 0 |
; +------------+-------+
; |LOG_ALERT | 1 |
; +------------+-------+
; |LOG_CRIT | 2 |
; +------------+-------+
; |LOG_WARNING | 3 |
; +------------+-------+
; |LOG_NOTICE | 4 |
; +------------+-------+
; |LOG_INFO | 5 |
; +------------+-------+
; |LOG_DEBUG | 6 |
; +------------+-------+
; |LOG_ERR | 7 |
; +------------+-------+
;
;suhosin.log.syslog.priority = LOG_ALERT
;
; suhosin.log.sapi
; ----------------
; * Type: Integer
; * Default: 0
;
; Defines what classes of security alerts are logged through the SAPI error log.
; For a list of available classes see table 1.
;
; Using constant names is only supported with the Suhosin-Patch. If in doubt, use
; the numeric value.
;
;suhosin.log.sapi = 0
;
; suhosin.log.stdout
; ------------------
; * Type: Integer
; * Default: 0
;
; Defines what classes of security alerts are logged through STDOUT. For a list
; of available classes see table 1.
;
; Using constant names is only supported with the Suhosin-Patch. If in doubt, use
; the numeric value.
;
; IMPORTANT NOTE: This option is meant for debugging purposes and unittests only
; and should not be used in production.
;
;suhosin.log.stdout = 0
;
; suhosin.log.file
; ----------------
; * Type: Integer
; * Default: 0
;
; Defines what classes of security alerts are logged to a separate Suhosin log
; file set by suhosin.log.file.name.
;
; Using constant names is only supported with the Suhosin-Patch. If in doubt, use
; the numeric value.
;
;suhosin.log.file = 0
;
; suhosin.log.file.name
; ---------------------
; * Type: String
; * Default:
;
; Defines the full path to a dedicated Suhosin log file.
;
;suhosin.log.file.name =
;
; suhosin.log.file.time
; ---------------------
; * Type: Boolean
; * Default: On
;
; Specifies if suhosin.log.file contains timestamp for each log entry.
;
; IMPORTANT NOTE: This option is meant for debugging purposes and unittests only
; and should not be used in production.
;
;suhosin.log.file.time = On
;
; suhosin.log.script
; ------------------
; * Type: Integer
; * Default: 0
;
; Defines what classes of security alerts are logged through the external logging
; script. For a list of available classes see table 1. An exception is the
; S_MEMORY class. It cannot be logged by a script, because S_MEMORY is triggered
; by buffer overflows etc... which means the process is in an unstable state.
;
; Using constant names is only supported with the Suhosin-Patch. If in doubt, use
; the numeric value.
;
;suhosin.log.script = 0
;
; suhosin.log.script.name
; -----------------------
; * Type: String
; * Default:
;
; Defines the full path to an external logging script. The script is called with
; 2 parameters. The first one is the alert class in string notation and the
; second parameter is the log message. This can be used for example to mail
; failing MySQL queries to your email address, because on a production system
; these things should never happen (S_SQL not yet supported by Suhosin).
;
;suhosin.log.script.name =
;
; suhosin.log.phpscript
; ---------------------
; * Type: Integer
; * Default: 0
;
; Defines what classes of security alerts are logged through the defined PHP
; script. For a list of available classes see table 1. Please notice, that only
; those classes are allowed, that can be triggered during script execution. An
; exception is the S_MEMORY class. It cannot be logged by a PHP script, because
; S_MEMORY is triggered by buffer overflows etc... which means the process is in
; an unstable state.
;
; Using constant names is only supported with the Suhosin-Patch. If in doubt, use
; the numeric value.
;
;suhosin.log.phpscript = 0
;
; suhosin.log.phpscript.name
; --------------------------
; * Type: String
; * Default:
;
; Defines the full path to a PHP logging script. The script is called with 2
; variables registered in the current scope: SUHOSIN_ERRORCLASS and
; SUHOSIN_ERROR. The first one is the alert class and the second variable is the
; log message. This can be used for example to mail attempted remote URL include
; attacks to your email address.
;
;suhosin.log.phpscript.name =
;
; suhosin.log.phpscript.is_safe
; -----------------------------
; * Type: Boolean
; * Default: Off
;
; Disables open_basedir (and safe_mode for older PHP versions < 5.4) when
; executing suhosin.log.phpscript.name.
;
;suhosin.log.phpscript.is_safe = Off
;
; ================
; Executor Options
; ================
; suhosin.log.use-x-forwarded-for
; -------------------------------
; * Type: Boolean
; * Default: Off
;
; When the Suhosin logs an error the log message also contains the IP of the
; attacker. Usually this IP is retrieved from the REMOTE_ADDR SAPI environment
; variable. With this switch it is possible to change this behavior to read the
; IP from the X-Forwarded-For HTTP header. This is for example necessary when
; your PHP server runs behind a reverse proxy.
;
;suhosin.log.use-x-forwarded-for = Off
;
; suhosin.executor.max_depth
; --------------------------
; * Type: Integer
; * Default: 750
;
; Defines the maximum stack depth allowed by the executor before it stops the
; script. Without this function an endless recursion in a PHP script could crash
; the PHP executor or trigger the configured memory_limit. A value of '0'
; disables this feature.
;
; (Before 0.9.37, the default value was 0.)
;
;suhosin.executor.max_depth = 750
;
; suhosin.executor.include.max_traversal
; --------------------------------------
; * Type: Integer
; * Default: 0
;
; Defines how many '../' an include filename needs to contain to be considered an
; attack and stopped. A value of '2' will block '../../etc/passwd', while a value
; of '3' will allow it. Most PHP applications should work flawlessly with values
; '4' or '5'. A value of '0' disables this feature.
;
;suhosin.executor.include.max_traversal = 0
;
; suhosin.executor.include.whitelist
; ----------------------------------
; * Type: String
; * Default:
;
; Comma separated whitelist of URL schemes that are allowed to be included from
; include or require statements. Additionally to URL schemes it is possible to
; specify the beginning of allowed URLs. (f.e.: php://stdin) If no whitelist is
; specified, then the blacklist is evaluated.
;
; Notes:
;
; * This setting deactivates suhosin.executor.include.blacklist.
; * If both suhosin.executor.include.whitelist and
; suhosin.executor.include.blacklist are unset or empty, all URLs will be
; blocked. This is the default.
;
;suhosin.executor.include.whitelist =
;
; suhosin.executor.include.blacklist
; ----------------------------------
; * Type: String
; * Default:
;
; Comma separated blacklist of URL schemes that are not allowed to be included
; from include or require statements. Additionally to URL schemes it is possible
; to specify the beginning of allowed URLs. (f.e.: php://stdin) If no blacklist
; and no whitelist is specified all URL schemes are forbidden.
;
;suhosin.executor.include.blacklist =
;
; suhosin.executor.include.allow_writable_files
; ---------------------------------------------
; * Type: Boolean
; * Default: On
;
; Turn this flag off to prevent PHP from executing writable PHP files. This can
; prevent attackers from executing code that was uploaded before.
;
; Note: Some software such as web-installers or web-based plugin installers won't
; work out of the box with this flag turned off.
;
;suhosin.executor.include.allow_writable_files = On
;
; suhosin.executor.func.whitelist
; -------------------------------
; * Type: String
; * Default:
;
; Comma separated whitelist of functions that are allowed to be called. If the
; whitelist is empty the blacklist is evaluated, otherwise calling a function not
; in the whitelist will terminate the script and get logged.
;
; Note: This setting deactivates suhosin.executor.func.blacklist.
;
;suhosin.executor.func.whitelist =
;
; suhosin.executor.func.blacklist
; -------------------------------
; * Type: String
; * Default:
;
; Comma separated blacklist of functions that are not allowed to be called. If no
; whitelist is given, calling a function within the blacklist will terminate the
; script and get logged.
;
;suhosin.executor.func.blacklist =
;
; suhosin.executor.eval.whitelist
; -------------------------------
; * Type: String
; * Default:
;
; Comma separated whitelist of functions that are allowed to be called from
; within eval(). If the whitelist is empty the blacklist is evaluated, otherwise
; calling a function not in the whitelist will terminate the script and get
; logged. Please read the instructions carefully.
;
; Note: This setting deactivates suhosin.executor.eval.blacklist.
;
;suhosin.executor.eval.whitelist =
;
; suhosin.executor.eval.blacklist
; -------------------------------
; * Type: String
; * Default:
;
; Comma separated blacklist of functions that are not allowed to be called from
; within eval(). If no whitelist is given, calling a function within the
; blacklist will terminate the script and get logged. Please read the
; instructions carefully.
;
;suhosin.executor.eval.blacklist =
;
; suhosin.executor.disable_eval
; -----------------------------
; * Type: Boolean
; * Default: Off
;
; eval() is a very dangerous statement and therefore you might want to disable it
; completely. Deactivating it will however break lots of scripts. Because every
; violation is logged, this allows finding all places where eval() is used.
;
;suhosin.executor.disable_eval = Off
;
; suhosin.executor.disable_emodifier
; ----------------------------------
; * Type: Boolean
; * Default: Off
;
; The /e modifier inside preg_replace() allows code execution. Often it is the
; cause for remote code execution exploits. It is wise to deactivate this feature
; and test where in the application it is used. The developer using the /e
; modifier should be made aware that he should use preg_replace_callback()
; instead.
;
;suhosin.executor.disable_emodifier = Off
;
; ============
; Misc Options
; ============
; suhosin.executor.allow_symlink
; ------------------------------
; * Type: Boolean
; * Default: Off
;
; This flag reactivates symlink() when open_basedir is used, which is disabled by
; default in Suhosin >= 0.9.6. Allowing symlink() while open_basedir is used is
; actually a security risk.
;
;suhosin.executor.allow_symlink = Off
;
; suhosin.simulation
; ------------------
; * Type: Boolean
; * Default: Off
;
; If you fear that Suhosin breaks your application, you can activate Suhosin's
; simulation mode with this flag. When Suhosin runs in simulation mode,
; violations are logged as usual, but nothing is blocked or removed from the
; request. (Transparent Encryptions are NOT deactivated in simulation mode.)
;
;suhosin.simulation = Off
;
; suhosin.perdir
; --------------
; * Type: String
; * Default: "0"
;
; Allow certain categories of config directives to be changed by .htaccess for
; each directory individually. Possible values are "l" (log), "e" (exec), "g"
; (get), "c" (cookie), "p" (post), "r" (request), "s" (sql), "u" (upload), "m"
; (misc) or any combination, e.g. "legcprsum" to allow everything. Both "0" and
; no value disable this feature.
;
;suhosin.perdir = "0"
;
; suhosin.protectkey
; ------------------
; * Type: Boolean
; * Default: On
;
; Prevent Suhosin's secret key material (suhosin.cookie.cryptkey,
; suhosin.session.cryptkey, suhosin.rand.seedingkey) from being exposed by
; phpinfo().
;
;suhosin.protectkey = On
;
; suhosin.coredump
; ----------------
; * Type: Boolean
; * Default: Off
;
; Controls if suhosin coredumps when the optional suhosin patch detects a buffer
; overflow, memory corruption or double free. This is only for debugging purposes
; and should not be activated.
;
;suhosin.coredump = Off
;
; suhosin.stealth
; ---------------
; * Type: Boolean
; * Default: On
;
; controls if suhosin loads in stealth mode when it is not the only
; zend_extension (Required for full compatibility with certain encoders that
; consider open source untrusted. e.g. ionCube, Zend)
;
;suhosin.stealth = On
;
; suhosin.apc_bug_workaround
; --------------------------
; * Type: Boolean
; * Default: Off
;
; APC 3.0.12(p1/p2) uses reserved resources without requesting a resource slot
; first. It always uses resource slot 0. If Suhosin got this slot assigned APC
; will overwrite the information Suhosin stores in this slot. When this flag is
; set Suhosin will request 2 Slots and use the second one. This allows working
; correctly with these buggy APC versions.
;
;suhosin.apc_bug_workaround = Off
;
; suhosin.disable.display_errors
; ------------------------------
; * Type: String
; * Default: 0
;
; Prevent PHP from setting display_errors programmatically. "0" means off. Any
; one of "1", "on", "yes", "true" means on. "fail" or "2" (or greater values)
; will let PHP know that the value change failed.
;
;suhosin.disable.display_errors = 0
;
; suhosin.multiheader
; -------------------
; * Type: Boolean
; * Default: Off
;
; This directive controls if multiple headers are allowed or not in a header()
; call. By default the Suhosin forbids this. (HTTP headers spanning multiple
; lines are still allowed).
;
;suhosin.multiheader = Off
;
; suhosin.mail.protect
; --------------------
; * Type: Integer
; * Default: 0
;
; This directive controls if the mail() header protection is activated or not and
; to what degree it is activated. The appended table lists the possible
; activation levels.
;
; +-------+--------------------------------------------------------------------+
; | Value | Description |
; +=======+====================================================================+
; | 0 | mail() header protection is disabled |
; +-------+--------------------------------------------------------------------+
; | 1 | Disallows newlines in Subject:, To: headers and double newlines in |
; | | additional headers |
; +-------+--------------------------------------------------------------------+
; | 2 | Additionally disallows To:, CC:, BCC: in additional headers |
; +-------+--------------------------------------------------------------------+
;
; Logging of this class of alerts is controlled by the new S_MAIL constant.
;
;suhosin.mail.protect = 0
;
; ========================
; SQL Injection Protection
; ========================
; suhosin.memory_limit
; --------------------
; * Type: Integer
; * Default: 0
;
; As long scripts are not running within safe_mode they are free to change the
; memory_limit to whatever value they want. Suhosin changes this fact and
; disallows setting the memory_limit to a value greater than the one the script
; started with, when this option is left at 0. A value greater than 0 means that
; Suhosin will disallow scripts setting the memory_limit to a value above this
; configured hard limit. This is for example useful if you want to run the script
; normally with a limit of 16M but image processing scripts may raise it to 20M.
;
;
;
; This class of features is experimental and still in development. As of Suhosin
; version 0.9.36 only preliminary MySQL and Mysqli support was added.
;
;suhosin.memory_limit = 0
;
; suhosin.sql.bailout_on_error
; ----------------------------
; * Type: Boolean
; * Default: Off
;
; (Planned feature. This is not yet supported.) When an SQL Query fails scripts
; often spit out a bunch of useful information for possible attackers. When this
; configuration directive is turned on, the script will silently terminate, after
; the problem has been logged.
;
;suhosin.sql.bailout_on_error = Off
;
; suhosin.sql.user_match
; ----------------------
; * Type: String
; * Default:
;
; (introduced in 0.9.37) The SQL username must match this wildcard pattern or the
; connect function will fail and return FALSE. Example: `suhosin.sql.user_match =
; public_*`
;
;suhosin.sql.user_match =
;
; suhosin.sql.user_prefix
; -----------------------
; * Type: String
; * Default:
;
; This is an experimental feature for shared environments. With this
; configuration option it is possible to specify a prefix that is automatically
; prepended to the database username, whenever a database connection is made.
; (Unless the username starts with the prefix)
;
; With this feature it is possible for shared hosters to disallow customers to
; connect with the usernames of other customers. This feature is experimental,
; because support for PDO and PostgreSQL are not yet implemented.
;
;suhosin.sql.user_prefix =
;
; suhosin.sql.user_postfix
; ------------------------
; * Type: String
; * Default:
;
; This is an experimental feature for shared environments. With this
; configuration option it is possible to specify a postfix that is automatically
; appended to the database username, whenever a database connection is made.
; (Unless the username end with the postfix)
;
; With this feature it is possible for shared hosters to disallow customers to
; connect with the usernames of other customers. This feature is experimental,
; because support for PDO and PostgreSQL are not yet implemented.
;
;suhosin.sql.user_postfix =
;
; suhosin.sql.comment
; -------------------
; * Type: Integer
; * Default: 0
;
; This is an experimental feature. Alert if an SQL query contains one or more
; comments starting with --, /* or #. A value of 1 logs the alert; 2 or greater
; let the call fail.
;
; Note: Mysql conditional statements starting with ``/*!`` are exempt if used
; with Mysqli.
;
;suhosin.sql.comment = 0
;
; suhosin.sql.opencomment
; -----------------------
; * Type: Integer
; * Default: 0
;
; This is an experimental feature.
; Alert if a MySQL comment was started but not closed: ``/*`` without ``*/``. A
; value of 1 logs the alert; 2 or greater let the call fail.
;
;suhosin.sql.opencomment = 0
;
; suhosin.sql.multiselect
; -----------------------
; * Type: Integer
; * Default: 0
;
; This is an experimental feature.
; Alert if an SQL query contains more than one SELECT statement. A value of 1
; logs the alert; 2 or greater let the call fail.
;
; Note: This flag will recognise multiple statements as well as subselects, e.g.
; "SELECT 1; SELECT 2" and "SELECT * FROM (SELECT 1)".
;
;suhosin.sql.multiselect = 0
;
; ==============================
; Transparent Encryption Options
; ==============================
; suhosin.sql.union
; -----------------
; * Type: Integer
; * Default: 0
;
; This is an experimental feature.
; Alert if an SQL query contains one or more UNIONs.
; A value of 1 logs the alert; 2 or greater let the call fail.
;
;suhosin.sql.union = 0
;
; suhosin.session.encrypt
; -----------------------
; * Type: Boolean
; * Default: On
;
; Flag that decides if the transparent session encryption is activated or not.
;
;suhosin.session.encrypt = On
;
; suhosin.session.cryptkey
; ------------------------
; * Type: String
; * Default:
;
; Session data can be encrypted transparently. The encryption key used consists
; of this user defined string (which can be altered by a script via ini_set())
; and optionally the User-Agent, the Document-Root and 0-4 octects of the
; REMOTE_ADDR.
;
;suhosin.session.cryptkey =
;
; suhosin.session.cryptua
; -----------------------
; * Type: Boolean
; * Default: Off
;
; Flag that decides if the transparent session encryption key depends on the
; User-Agent field. (When activated this feature transparently adds a little bit
; protection against session fixation/hijacking attacks)
;
;suhosin.session.cryptua = Off
;
; suhosin.session.cryptdocroot
; ----------------------------
; * Type: Boolean
; * Default: On
;
; Flag that decides if the transparent session encryption key depends on the
; Documentroot field.
;
;suhosin.session.cryptdocroot = On
;
; suhosin.session.cryptraddr
; --------------------------
; * Type: Integer
; * Default: 0
;
; Number of octets (0-4) from the REMOTE_ADDR that the transparent session
; encryption key depends on. Keep in mind that this should not be used on sites
; that have visitors from big ISPs, because their IP address often changes during
; a session. But this feature might be interesting for admin interfaces or
; intranets. When used wisely this is a transparent protection against session
; hijacking/fixation. This feature supports IPv4 only.
;
;suhosin.session.cryptraddr = 0
;
; suhosin.session.checkraddr
; --------------------------
; * Type: Integer
; * Default: 0
;
; Number of octets (0-4) from the REMOTE_ADDR that have to match to decrypt the
; session. The difference to suhosin.session.cryptaddr is, that the IP is not
; part of the encryption key, so that the same session can be used for different
; areas with different protection levels on the site. This feature supports IPv4
; only.
;
;suhosin.session.checkraddr = 0
;
; suhosin.cookie.encrypt
; ----------------------
; * Type: Boolean
; * Default: Off
;
; Flag that decides if the transparent cookie encryption is activated or not.
;
;suhosin.cookie.encrypt = Off
;
; suhosin.cookie.cryptkey
; -----------------------
; * Type: String
; * Default:
;
; Cookies can be encrypted transparently. The encryption key used consists of
; this user defined string and optionally the User-Agent, the Document-Root and
; 0-4 octects of the REMOTE_ADDR.
;
;suhosin.cookie.cryptkey =
;
; suhosin.cookie.cryptua
; ----------------------
; * Type: Boolean
; * Default: On
;
; Flag that decides if the transparent session encryption key depends on the
; User-Agent field. (When activated this feature transparently adds a little bit
; protection against session fixation/hijacking attacks (if only session cookies
; are allowed))
;
;suhosin.cookie.cryptua = On
;
; suhosin.cookie.cryptdocroot
; ---------------------------
; * Type: Boolean
; * Default: On
;
; Flag that decides if the transparent cookie encryption key depends on the
; Documentroot field.
;
;suhosin.cookie.cryptdocroot = On
;
; suhosin.cookie.cryptraddr
; -------------------------
; * Type: Integer
; * Default: 0
;
; Number of octets (0-4) from the REMOTE_ADDR that the transparent cookie
; encryption key depends on. Keep in mind that this should not be used on sites
; that have visitors from big ISPs, because their IP address often changes during
; a session. But this feature might be interesting for admin interfaces or
; intranets. When used wisely this is a transparent protection against session
; hijacking/fixation. This feature supports IPv4 only.
;
;suhosin.cookie.cryptraddr = 0
;
; suhosin.cookie.checkraddr
; -------------------------
; * Type: Integer
; * Default: 0
;
; Number of octets (0-4) from the REMOTE_ADDR that have to match to decrypt the
; cookie. The difference to suhosin.cookie.cryptaddr is, that the IP is not part
; of the encryption key, so that the same cookie can be used for different areas
; with different protection levels on the site. This feature supports IPv4 only.
;
;suhosin.cookie.checkraddr = 0
;
; suhosin.cookie.cryptlist
; ------------------------
; * Type: String
; * Default:
;
; In case not all cookies are supposed to get encrypted this is a comma separated
; list of cookie names that should get encrypted. All other cookies will not get
; touched.
;
;suhosin.cookie.cryptlist =
;
; =================
; Filtering Options
; =================
; suhosin.cookie.plainlist
; ------------------------
; * Type: String
; * Default:
;
; In case some cookies should not be encrypted this is a comma separated list of
; cookies that do not get encrypted. All other cookies will be encrypted.
;
; Note: This setting deactivates suhosin.cookie.cryptlist.
;
;suhosin.cookie.plainlist =
;
; suhosin.filter.action
; ---------------------
; * Type: Mixed
; * Default:
;
; Defines the reaction of Suhosin on a filter violation. Following possible
; actions are supported
;
; +-------------------------------+--------------------------------------------+
; | Type | Description |
; +===============================+============================================+
; | | Normal action is simply blocking the |
; | | variable from being registered |
; +-------------------------------+--------------------------------------------+
; | 402 | Do not execute the script and return a |
; | | HTTP 402 response code |
; +-------------------------------+--------------------------------------------+
; | [302,]http://www.example.com | Redirect to http://www.example.com instead |
; | | of executing. Optionally set a specific |
; | | HTTP response code |
; +-------------------------------+--------------------------------------------+
; | [402,]/var/scripts/badguy.php | Execute a specific PHP script instead of |
; | | the requested script. Optionally set a |
; | | specific HTTP response code |
; +-------------------------------+--------------------------------------------+
;
;suhosin.filter.action =
;
; suhosin.cookie.max_array_depth
; ------------------------------
; * Type: Integer
; * Default: 50
;
; Defines the maximum depth an array variable may have, when registered through
; the COOKIE.
;
; Note: Array depth is not the number of elements within an array.
;
;suhosin.cookie.max_array_depth = 50
;
; suhosin.cookie.max_array_index_length
; -------------------------------------
; * Type: Integer
; * Default: 64
;
; Defines the maximum length of array indices for variables registered through
; the COOKIE.
;
;suhosin.cookie.max_array_index_length = 64
;
; suhosin.cookie.max_name_length
; ------------------------------
; * Type: Integer
; * Default: 64
;
; Defines the maximum length of variable names for variables registered through
; the COOKIE. For array variables this is the name in front of the indices.
;
;suhosin.cookie.max_name_length = 64
;
; suhosin.cookie.max_totalname_length
; -----------------------------------
; * Type: Integer
; * Default: 256
;
; Defines the maximum length of the total variable name when registered through
; the COOKIE. For array variables this includes all indices.
;
;suhosin.cookie.max_totalname_length = 256
;
; suhosin.cookie.max_value_length
; -------------------------------
; * Type: Integer
; * Default: 10000
;
; Defines the maximum length of a variable that is registered through the COOKIE.
;
;suhosin.cookie.max_value_length = 10000
;
; suhosin.cookie.max_vars
; -----------------------
; * Type: Integer
; * Default: 100
;
; Defines the maximum number of variables that may be registered through the
; COOKIE.
;
;suhosin.cookie.max_vars = 100
;
; suhosin.cookie.disallow_nul
; ---------------------------
; * Type: Boolean
; * Default: On
;
; When set to On ASCIIZ chars are not allowed in variables.
;
;suhosin.cookie.disallow_nul = On
;
; suhosin.cookie.disallow_ws
; --------------------------
; * Type: Boolean
; * Default: On
;
; Ignore cookies with names starting with whitespace.
;
;suhosin.cookie.disallow_ws = On
;
; suhosin.get.max_array_depth
; ---------------------------
; * Type: Integer
; * Default: 50
;
; Defines the maximum depth an array variable may have, when registered through
; the URL.
;
; Note: Array depth is not the number of elements within an array.
;
;suhosin.get.max_array_depth = 50
;
; suhosin.get.max_array_index_length
; ----------------------------------
; * Type: Integer
; * Default: 64
;
; Defines the maximum length of array indices for variables registered through
; the URL.
;
;suhosin.get.max_array_index_length = 64
;
; suhosin.get.max_name_length
; ---------------------------
; * Type: Integer
; * Default: 64
;
; Defines the maximum length of variable names for variables registered through
; the URL. For array variables this is the name in front of the indices.
;
;suhosin.get.max_name_length = 64
;
; suhosin.get.max_totalname_length
; --------------------------------
; * Type: Integer
; * Default: 256
;
; Defines the maximum length of the total variable name when registered through
; the URL. For array variables this includes all indices.
;
;suhosin.get.max_totalname_length = 256
;
; suhosin.get.max_value_length
; ----------------------------
; * Type: Integer
; * Default: 512
;
; Defines the maximum length of a variable that is registered through the URL.
;
;suhosin.get.max_value_length = 512
;
; suhosin.get.max_vars
; --------------------
; * Type: Integer
; * Default: 100
;
; Defines the maximum number of variables that may be registered through the URL.
;
;suhosin.get.max_vars = 100
;
; suhosin.get.disallow_nul
; ------------------------
; * Type: Boolean
; * Default: On
;
; When set to On ASCIIZ chars are not allowed in variables.
;
;suhosin.get.disallow_nul = On
;
; suhosin.get.disallow_ws
; -----------------------
; * Type: Boolean
; * Default: Off
;
; Ignore GET parameters with names starting with whitespace.
;
;suhosin.get.disallow_ws = Off
;
; suhosin.post.max_array_depth
; ----------------------------
; * Type: Integer
; * Default: 50
;
; Defines the maximum depth an array variable may have, when registered through a
; POST request.
;
; Note: Array depth is not the number of elements within an array.
;
;suhosin.post.max_array_depth = 50
;
; suhosin.post.max_array_index_length
; -----------------------------------
; * Type: Integer
; * Default: 64
;
; Defines the maximum length of array indices for variables registered through a
; POST request.
;
;suhosin.post.max_array_index_length = 64
;
; suhosin.post.max_name_length
; ----------------------------
; * Type: Integer
; * Default: 64
;
; Defines the maximum length of variable names for variables registered through a
; POST request. For array variables this is the name in front of the indices.
;
;suhosin.post.max_name_length = 64
;
; suhosin.post.max_totalname_length
; ---------------------------------
; * Type: Integer
; * Default: 256
;
; Defines the maximum length of the total variable name when registered through a
; POST request. For array variables this includes all indices.
;
;suhosin.post.max_totalname_length = 256
;
; suhosin.post.max_value_length
; -----------------------------
; * Type: Integer
; * Default: 1000000
;
; Defines the maximum length of a variable that is registered through a POST
; request.
;
;suhosin.post.max_value_length = 1000000
;
; suhosin.post.max_vars
; ---------------------
; * Type: Integer
; * Default: 1000
;
; Defines the maximum number of variables that may be registered through a POST
; request.
;
;suhosin.post.max_vars = 1000
;
; suhosin.post.disallow_nul
; -------------------------
; * Type: Boolean
; * Default: On
;
; When set to On ASCIIZ chars are not allowed in variables.
;
;suhosin.post.disallow_nul = On
;
; suhosin.post.disallow_ws
; ------------------------
; * Type: Boolean
; * Default: Off
;
; Ignore POST parameters with names starting with whitespace.
;
;suhosin.post.disallow_ws = Off
;
; suhosin.request.array_index_blacklist
; -------------------------------------
; * Type: String
; * Default: "'\"+<>;()"
;
; Defines a character blacklist for array indices not allowed in user input.
;
; Note: The default value also contained '-' in 0.9.37, which was removed in
; 0.9.37.1 due to incompatibility issues.
;
;suhosin.request.array_index_blacklist = "'\"+<>;()"
;
; suhosin.request.array_index_whitelist
; -------------------------------------
; * Type: String
; * Default:
; * Example: "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
;
; Defines a character whitelist for array indices allowed in user input.
;
; Note: This setting deactivates suhosin.request.array_index_blacklist.
;
;suhosin.request.array_index_whitelist =
;
; suhosin.request.max_array_depth
; -------------------------------
; * Type: Integer
; * Default: 50
;
; Defines the maximum depth an array variable may have, when registered through
; GET , POST or COOKIE. This setting is also an upper limit for the separate GET,
; POST, COOKIE configuration directives.
;
; Note: Array depth is not the number of elements within an array.
;
;suhosin.request.max_array_depth = 50
;
; suhosin.request.max_array_index_length
; --------------------------------------
; * Type: Integer
; * Default: 64
;
; Defines the maximum length of array indices for variables registered through
; GET, POST or COOKIE. This setting is also an upper limit for the separate GET,
; POST, COOKIE configuration directives.
;
;suhosin.request.max_array_index_length = 64
;
; suhosin.request.max_totalname_length
; ------------------------------------
; * Type: Integer
; * Default: 256
;
; Defines the maximum length of variable names for variables registered through
; the COOKIE, the URL or through a POST request. This is the complete name
; string, including all indices. This setting is also an upper limit for the
; separate GET, POST, COOKIE configuration directives.
;
;suhosin.request.max_totalname_length = 256
;
; suhosin.request.max_value_length
; --------------------------------
; * Type: Integer
; * Default: 1000000
;
; Defines the maximum length of a variable that is registered through the COOKIE,
; the URL or through a POST request. This setting is also an upper limit for the
; variable origin specific configuration directives.
;
;suhosin.request.max_value_length = 1000000
;
; suhosin.request.max_vars
; ------------------------
; * Type: Integer
; * Default: 1000
;
; Defines the maximum number of variables that may be registered through the
; COOKIE, the URL or through a POST request. This setting is also an upper limit
; for the variable origin specific configuration directives.
;
;suhosin.request.max_vars = 1000
;
; suhosin.request.max_varname_length
; ----------------------------------
; * Type: Integer
; * Default: 64
;
; Defines the maximum name length (excluding possible array indices) of variables
; that may be registered through the COOKIE, the URL or through a POST request.
; This setting is also an upper limit for the variable origin specific
; configuration directives.
;
;suhosin.request.max_varname_length = 64
;
; suhosin.request.disallow_nul
; ----------------------------
; * Type: Boolean
; * Default: On
;
; When set to On ASCIIZ chars are not allowed in variables.
;
;suhosin.request.disallow_nul = On
;
; suhosin.request.disallow_ws
; ---------------------------
; * Type: Boolean
; * Default: Off
;
; Ignore all variables with names starting with whitespace.
;
;suhosin.request.disallow_ws = Off
;
; suhosin.upload.max_uploads
; --------------------------
; * Type: Integer
; * Default: 25
;
; Defines the maximum number of files that may be uploaded with one request.
;
;suhosin.upload.max_uploads = 25
;
; suhosin.upload.disallow_elf
; ---------------------------
; * Type: Boolean
; * Default: On
;
; When set to On it is not possible to upload ELF executables.
;
;suhosin.upload.disallow_elf = On
;
; suhosin.upload.disallow_binary
; ------------------------------
; * Type: Boolean
; * Default: Off
;
; When set to On it is not possible to upload binary files.
;
;suhosin.upload.disallow_binary = Off
;
; suhosin.upload.remove_binary
; ----------------------------
; * Type: Boolean
; * Default: Off
;
; When set to On binary content is removed from the uploaded files.
;
;suhosin.upload.remove_binary = Off
;
; suhosin.upload.allow_utf8
; -------------------------
; * Type: Boolean
; * Default: Off
;
; This is an experimental feature. This option allows UTF-8 along with ASCII when
; using `suhosin.upload.disallow_binary` or `suhosin.upload.remove_binary`.
;
;suhosin.upload.allow_utf8 = Off
;
; suhosin.upload.verification_script
; ----------------------------------
; * Type: String
; * Default:
;
; This defines the full path to a verification script for uploaded files. The
; script gets the temporary filename supplied and has to decide if the upload is
; allowed. A possible application for this is to scan uploaded files for viruses.
; The called script has to write a 1 as first line to standard output to allow
; the upload. Any other value or no output at all will result in the file being
; deleted.
;
;suhosin.upload.verification_script =
;
; suhosin.session.max_id_length
; -----------------------------
; * Type: Integer
; * Default: 128
;
; Specifies the maximum length of the session identifier that is allowed. When a
; longer session identifier is passed a new session identifier will be created.
; This feature is important to fight buffer overflows in 3rd party session
; handlers.
;
;suhosin.session.max_id_length = 128
;
; suhosin.server.encode
; ---------------------
; * Type: Boolean
; * Default: On
;
; Encode potentially dangerous characters in REQUEST_URI and QUERY_STRING with
; URL encoding.
;
;suhosin.server.encode = On
;
; suhosin.server.strip
; --------------------
; * Type: Boolean
; * Default: On
;
; Replace potentially dangerous characters in PHP_SELF, PATH_INFO,
; PATH_TRANSLATED and HTTP_USER_AGENT with '?'.
;
;suhosin.server.strip = On
;
; suhosin.rand.seedingkey
; -----------------------
; * Type: String
; * Default:
;
; This string is added to the entropy pool for seeding the random number
; generator.
;
;suhosin.rand.seedingkey =
;
; suhosin.rand.reseed_every_request
; ---------------------------------
; * Type: Boolean
; * Default: Off
;
; Controls if automatic reseeding of rand() / mt_rand() is done for every new
; request. Will improve security but decrease performance. In case the system's
; entry pool is exhausted, this flag may either significantly increase execution
; time or otherwise use less entropy (which is bad).
;
;suhosin.rand.reseed_every_request = Off
;
; suhosin.srand.ignore
; --------------------
; * Type: Boolean
; * Default: On
;
; Flag that controls if calls to srand() are ignored in favour of Suhosin's own
; enhanced seeding - since 0.9.36 calls will trigger auto-reseeding.
;
;suhosin.srand.ignore = On
;
; suhosin.mt_srand.ignore
; -----------------------
; * Type: Boolean
; * Default: On
;
; Flag that controls if calls to mt_srand() are ignored in favour of Suhosin's
; own enhanced seeding - since 0.9.36 calls will trigger auto-reseeding.
;
;suhosin.mt_srand.ignore = On
;
|