-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
37 lines (33 loc) · 860 Bytes
/
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
<?php
/**
* Malicious - Configuration
*
* @copyright Ackwa.fr - 2014
*
* Paths & limit
*
* @info Path are relative to Malicious core
*/
define('MCS_ROOT' , dirname(__FILE__).'/..'); // Directory to scan
define('MCS_LOGS' , dirname(__FILE__).'/logs'); // Where to save logs
define('MCS_NOLIMIT', true); // Disable memory limit & timeout
/*
* Authorizations
*/
define('MCS_SECRET', 'mysecretkey');
/*
* Notification
*/
define('MCS_EMAIL', '[email protected]');
define('MCS_SITE' , 'Ackwa');
/*
* Some basics "Check configurations"
*/
define('MCS_PLUGINS' , 'readable,eval,exec');
define('MCS_PLUGINS_1', 'updated');
define('MCS_PLUGINS_2', 'readable,eval,exec,empty,updated,writable,big,hidden');
/*
* Some basics "Report configurations"
*/
define('MCS_REPORTS' , 'echo,log');
define('MCS_REPORTS_1', 'mail,log');