forked from p15670423/monkey
Merge pull request #144 from guardicore/bugfix/fix-bad-default-config
Fix default config values
This commit is contained in:
commit
2ddae99687
|
@ -184,9 +184,9 @@ class Configuration(object):
|
|||
# Auto detect and scan local subnets
|
||||
local_network_scan = True
|
||||
|
||||
subnet_scan_list = ['', ]
|
||||
subnet_scan_list = []
|
||||
|
||||
blocked_ips = ['', ]
|
||||
blocked_ips = []
|
||||
|
||||
# TCP Scanner
|
||||
HTTP_PORTS = [80, 8080, 443,
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
],
|
||||
"keep_tunnel_open_time": 60,
|
||||
"subnet_scan_list": [
|
||||
""
|
||||
|
||||
],
|
||||
"blocked_ips": [""],
|
||||
"blocked_ips": [],
|
||||
"current_server": "41.50.73.31:5000",
|
||||
"alive": true,
|
||||
"collect_system_info": true,
|
||||
|
|
Loading…
Reference in New Issue