Merge pull request #144 from guardicore/bugfix/fix-bad-default-config

Fix default config values
This commit is contained in:
Daniel Goldberg 2018-06-21 11:40:44 +03:00 committed by GitHub
commit 2ddae99687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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,

View File

@ -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,