forked from p34709852/monkey
Fix default config values
This commit is contained in:
parent
de832780b6
commit
20d4b3a642
|
@ -184,9 +184,9 @@ class Configuration(object):
|
||||||
# Auto detect and scan local subnets
|
# Auto detect and scan local subnets
|
||||||
local_network_scan = True
|
local_network_scan = True
|
||||||
|
|
||||||
subnet_scan_list = ['', ]
|
subnet_scan_list = []
|
||||||
|
|
||||||
blocked_ips = ['', ]
|
blocked_ips = []
|
||||||
|
|
||||||
# TCP Scanner
|
# TCP Scanner
|
||||||
HTTP_PORTS = [80, 8080, 443,
|
HTTP_PORTS = [80, 8080, 443,
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
],
|
],
|
||||||
"keep_tunnel_open_time": 60,
|
"keep_tunnel_open_time": 60,
|
||||||
"subnet_scan_list": [
|
"subnet_scan_list": [
|
||||||
""
|
|
||||||
],
|
],
|
||||||
"blocked_ips": [""],
|
"blocked_ips": [],
|
||||||
"current_server": "41.50.73.31:5000",
|
"current_server": "41.50.73.31:5000",
|
||||||
"alive": true,
|
"alive": true,
|
||||||
"collect_system_info": true,
|
"collect_system_info": true,
|
||||||
|
|
Loading…
Reference in New Issue