forked from terrylinooo/shieldon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
633 lines (555 loc) · 16.4 KB
/
config.php
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
<?php
/*
* This file is part of the Shieldon package.
*
* (c) Terry L. <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Notice: This file is a sample file for configuration.
*/
return [
/*
|--------------------------------------------------------------------------
| Deamon
|--------------------------------------------------------------------------
|
| Setting true to this value to start Shieldon running on the background.
| Every HTTP request will be analyzed.
|
*/
'daemon' => false,
/*
|--------------------------------------------------------------------------
| Firewall Administor
|--------------------------------------------------------------------------
|
| The users who can login Shieldon Firewall's control panel.
| Deault: shieldon_user / shieldon_pass
| This is a basic protection. Please change the user and password.
|
*/
'admin' => [
'user' => 'shieldon_user',
'pass' => 'shieldon_pass',
'last_modified' => '2020-02-05',
],
/*
|--------------------------------------------------------------------------
| Channel Id
|--------------------------------------------------------------------------
|
| If you would like use mutliple Shieldon, specifying a Channel Id here.
|
*/
'channel_id' => '',
/*
|--------------------------------------------------------------------------
| Driver Type
|--------------------------------------------------------------------------
|
| The type of the Data driver
|
*/
'driver_type' => 'file',
/*
|--------------------------------------------------------------------------
| Drivers
|--------------------------------------------------------------------------
|
| The setting details of the data drivers.
|
*/
'drivers' => [
// Data driver: File system.
'file' => [
'directory_path' => '',
],
// Data driver: File system.
'mysql' => [
'host' => '127.0.0.1',
'dbname' => 'shieldon_db',
'user' => 'shieldon_user',
'pass' => '1234',
'charset' => 'utf8',
],
// Data driver: SQLite.
'sqlite' => [
'directory_path' => '',
],
],
/*
|--------------------------------------------------------------------------
| Loggers
|--------------------------------------------------------------------------
|
| Logging data to the logs files then we can parse them to visual charts.
| Currently, we provide only Action Logger now.
|
*/
'loggers' => [
'action' => [
'enable' => false,
'config' => [
'directory_path' => '',
],
],
],
/*
|--------------------------------------------------------------------------
| Filters
|--------------------------------------------------------------------------
|
| Filters are the soft rule-sets to detect bad-behavior requests then we
| can "temporarily" ban them. (Unbannend by solving CAPTCHA by themselves.)
|
*/
'filters' => [
// Fequency filter.
'frequency' => [
'enable' => false,
'config' => [
'quota_s' => 2,
'quota_m' => 10,
'quota_h' => 30,
'quota_d' => 60,
],
],
// JavaScript cookie filter.
'cookie' => [
'enable' => false,
'config' => [
'cookie_name' => 'ssjd',
'cookie_domain' => '',
'cookie_value' => '1',
'quota' => 5,
],
],
// Session filter.
'session' => [
'enable' => false,
'config' => [
'quota' => 5,
'time_buffer' => 5,
],
],
// Referer filter.
'referer' => [
'enable' => false,
'config' => [
'quota' => 5,
'time_buffer' => 5,
],
],
],
/*
|--------------------------------------------------------------------------
| Components
|--------------------------------------------------------------------------
|
| Components are the hard rule-sets to detect bad-behavior requests then we
| can "permanently" ban them. (No CAPTCHA shows.)
|
| Each component provides its public APIs for further control.
|
*/
'components' => [
// IP component.
'ip' => [
'enable' => true,
],
// Trusted-bot component.
'trusted_bot' => [
'enable' => true,
'strict_mode' => false,
'allowed_list' => [],
],
// Header filter.
'header' => [
'enable' => true,
'strict_mode' => false,
],
// User-agent filter.
'user_agent' => [
'enable' => true,
'strict_mode' => false,
],
// RDNS filter.
'rdns' => [
'enable' => true,
'strict_mode' => false,
],
],
/*
|--------------------------------------------------------------------------
| CAPTCHA Modules
|--------------------------------------------------------------------------
|
| CAPTCHA modules provide its way to unban users.
|
*/
'captcha_modules' => [
// Google reCAPTCHA.
'recaptcha' => [
'enable' => false,
'config' => [
'site_key' => null,
'secret_key' => null,
'version' => 'v2',
'lang' => 'en-US'
],
],
// A very simple image CAPTCHA.
'image' => [
'enable' => false,
'config' => [
'type' => 'alnum', // // alnum, alpha, numeric
'length' => 4,
],
],
],
/*
|--------------------------------------------------------------------------
| IP Variable Source
|--------------------------------------------------------------------------
|
| Picking up the real IP source is a must if you use CDN service on frontend.
|
*/
'ip_variable_source' => [
'REMOTE_ADDR' => true,
'HTTP_CF_CONNECTING_IP' => false,
'HTTP_X_FORWARDED_FOR' => false,
'HTTP_X_FORWARDED_HOST' => false,
],
/*
|--------------------------------------------------------------------------
| Online Session Limit
|--------------------------------------------------------------------------
|
| When the Online user count has reached the limit, other users not in the
| queue have to line up!
|
*/
'online_session_limit' => [
'enable' => false,
'config' => [
'count' => 100,
'period' => 300,
'unique_only' => false,
],
],
/*
|--------------------------------------------------------------------------
| XSS protection.
|--------------------------------------------------------------------------
|
| Googling "XSS" to understand who it is and how can we do.
| This feature is still under development. Give us suggestions.
|
*/
'xss_protection' => [
'post' => false,
'get' => false,
'cookie' => false,
],
'xss_protected_list' => [
[
'type' => 'get',
'variable' => '_test',
],
[
'type' => 'post',
'variable' => '_test',
],
[
'type' => 'cookie',
'variable' => '_test',
],
],
/*
|--------------------------------------------------------------------------
| DDOS protection.
|--------------------------------------------------------------------------
|
| Block users permanently while they never solve any CAPTCHA many times.
| You can block they by Shieldon or by IPTABLE, UTW, etc...
|
| iptables -A INPUT -s %s -j DROP
| ufw deny from %s to any
|
*/
'ddos_protection' => [
'enable' => false,
'config' => [
'attacks' => 10,
'handler' => [
'type' => 'shieldon', // shieldon, iptable, utw (Ubuntu firewall).
],
],
],
/*
|--------------------------------------------------------------------------
| CSRF protection. (Not ready.)
|--------------------------------------------------------------------------
|
| Googling "CSRF" to understand who it is and how can we do.
| This feature is still under development. Give us suggestions.
|
*/
'csrf_protection' => [
'enable' => true,
'config' => [
'expire' => 7200,
'excluded_urls' => [
[
'url' => '/ajax/',
],
],
],
],
/*
|--------------------------------------------------------------------------
| Cronjob
|--------------------------------------------------------------------------
|
| Shieldon's CRON is triggered by HTTP request, not real system CRON.
|
*/
'cronjob' => [
'reset_circle' => [
'enable' => true,
'config' => [
'period' => 86400,
'last_update' => '2019-01-01 00:00:00',
],
],
],
/*
|--------------------------------------------------------------------------
| Excluded URLs
|--------------------------------------------------------------------------
|
| Shieldon will ignore URLs listed blew.
|
*/
'excluded_urls' => [
[
'url' => '/tests/',
],
],
/*
|--------------------------------------------------------------------------
| IP Manager
|--------------------------------------------------------------------------
|
| IP manager is provided by IP component.
| Please notice that it will match all URLs begin with the url fields.
|
*/
'ip_manager' => [
[
'url' => '/',
'rule' => 'allow',
'ip' => '127.0.0.1',
],
],
/*
|--------------------------------------------------------------------------
| WWW-Authenticate
|--------------------------------------------------------------------------
|
| Basic authenticate. For more detail:
| https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/WWW-Authenticate
|
*/
'www_authenticate' => [
[
'url' => '/wp-admin',
'user' => 'wp_shieldon_admin',
'pass' => '$2y$10$eA/S6rH3JDkYV9nrrUvuMOTh8Q/ts33DdCerbNAUpdwtSl3Xq9cQq',
],
],
/*
|--------------------------------------------------------------------------
| Dialog UI
|--------------------------------------------------------------------------
*/
'dialog_ui' => [
'lang' => 'en',
'background_image' => '',
'bg_color' => '#ffffff',
'header_bg_color' => '#212531',
'header_color' => '#ffffff',
'shadow_opacity' => '0.2',
],
'dialog_info_disclosure' => [
'user_inforamtion' => false,
'http_status_code' => false,
'reason_code' => false,
'reason_text' => false,
'online_user_amount' => false,
],
/*
|--------------------------------------------------------------------------
| Messenger
|--------------------------------------------------------------------------
|
| Docs: https://github.com/terrylinooo/messenger
|
| The `confirm_test` value is must be True to execute a messener module.
| Test the configuration before sending a message.
|--------------------------------------------------------------------------
*/
'messengers' => [
'line_notify' => [
'enable' => false,
'config' => [
'access_token' => 'your_access_token',
],
'confirm_test' => false,
],
'telegram' => [
'enable' => false,
'config' => [
'api_key' => 'your_api_key',
],
'confirm_test' => false,
],
'slack' => [
'enable' => false,
'config' => [
'bot_token' => 'your_bot_token',
'channel' => 'your_channel',
],
'confirm_test' => false,
],
'slack_webhook' => [
'enable' => false,
'config' => [
'webhook_url' => 'your_webhook_url',
],
'confirm_test' => false,
],
'rocket_chat' => [
'enable' => false,
'config' => [
'server_url' => 'your_server_url',
'user_id' => 'your_rocketchat_user_id',
'access_token' => 'your_accress_token',
'channel' => 'your_channel',
],
'confirm_test' => false,
],
'sendgrid' => [
'enable' => false,
'config' => [
'api_key' => 'your_api_key',
'sender' => '[email protected]',
'recipients' => [
],
],
'confirm_test' => false,
],
'mailgun' => [
'enable' => false,
'config' => [
'api_key' => 'your_api_key',
'domain_name' => 'your_domain.com',
'sender' => '[email protected]',
'recipients' => [
]
],
'confirm_test' => false,
],
'native_php_mail' => [
'enable' => false,
'config' => [
'sender' => '[email protected]',
'recipients' => [
],
],
'confirm_test' => false,
],
'native_php_mail' => [
'enable' => false,
'config' => [
'sender' => '[email protected]',
'recipients' => [
],
],
'confirm_test' => false,
],
'smtp' => [
'enable' => false,
'config' => [
'host' => "127.0.0.1",
'port' => 25,
'type' => '', // null, ssl, tls
'user' => '',
'pass' => '',
'sender' => '[email protected]',
'recipients' => [
],
],
'confirm_test' => false,
],
],
/*
|--------------------------------------------------------------------------
| Events
|--------------------------------------------------------------------------
*/
'events' => [
'failed_attempts_in_a_row' => [
'data_circle' => [
'enable' => true,
'messenger' => true,
'buffer' => 10,
],
'system_firewall' => [
'enable' => true,
'messenger' => true,
'buffer' => 10,
],
],
],
/*
|--------------------------------------------------------------------------
| Checking the last failure time
|--------------------------------------------------------------------------
*/
'record_attempt' => [
'detection_period' => 5,
'time_to_reset' => 1800,
],
'check_last_failed_attempt_time' => 5,
/*
|--------------------------------------------------------------------------
| Firewall - iptables
|--------------------------------------------------------------------------
*/
'iptables' => [
'enable' => false,
'config' => [
'watching_folder' => '',
],
],
'ip6tables' => [
'enable' => false,
'config' => [
'watching_folder' => '',
],
],
];