-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.inc.php
30 lines (26 loc) · 1.15 KB
/
config.inc.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
<?php
/****
_ _ _____ ______ __ _ _ _ ___
| |_| |__ ___|__ /___ ___ / / /\ \ / /__| |__ | | | |_ _|
| __| '_ \ / _ \ / // _ \ / _ \ / / / \ \ /\ / / _ \ '_ \| | | || |
| |_| | | | __// /| (_) | (_) / / / \ V V / __/ |_) | |_| || |
\__|_| |_|\___/____\___/ \___/_/_/ \_/\_/ \___|_.__/ \___/|___|
by KawaiiPantsu
https://github.com/kawaiipantsu/theZoo-WebUI
***************************************************************************/
/***** theZoo WebUI Settings */
$cfg["webui"]["allow_payload"] = true; // Allow payload urls (direct unpacked binaries)
$cfg["webui"]["allow_dbupdate"] = false; // Allow to update the malware db over internet
$cfg["webui"]["allow_public"] = false; // Allow other than private IP ranges
$cfg["webui"]["allow_extraio"] = true; // Do not try to minimize I/O operations
/***** theZoo Settings */
// theZoo Path
$cfg["thezoo"] = "./theZoo";
// theZoo DB
$cfg["db"] = array(
"engine" => "sqlite3",
"dbname" => "maldb.db",
"username" => false,
"password" => false,
);
?>