forked from p15670423/monkey
Removed hard coded debug address and replaced with non routable IP
This commit is contained in:
parent
385cf13636
commit
35b535f97a
|
@ -163,7 +163,7 @@ class Configuration(object):
|
|||
|
||||
# Configuration servers to try to connect to, in this order.
|
||||
command_servers = [
|
||||
"41.50.73.31:5000"
|
||||
"192.0.2.0:5000"
|
||||
]
|
||||
|
||||
# sets whether or not to locally save the running configuration after finishing
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"command_servers": [
|
||||
"41.50.73.31:5000"
|
||||
"192.0.2.0:5000"
|
||||
],
|
||||
"internet_services": [
|
||||
"monkey.guardicore.com",
|
||||
|
@ -11,7 +11,7 @@
|
|||
""
|
||||
],
|
||||
"blocked_ips": [""],
|
||||
"current_server": "41.50.73.31:5000",
|
||||
"current_server": "192.0.2.0:5000",
|
||||
"alive": true,
|
||||
"collect_system_info": true,
|
||||
"extract_azure_creds": true,
|
||||
|
|
|
@ -545,7 +545,7 @@ SCHEMA = {
|
|||
"type": "string"
|
||||
},
|
||||
"default": [
|
||||
"41.50.73.31:5000"
|
||||
"192.0.2.0:5000"
|
||||
],
|
||||
"description": "List of command servers to try and communicate with (format is <ip>:<port>)"
|
||||
},
|
||||
|
@ -567,7 +567,7 @@ SCHEMA = {
|
|||
"current_server": {
|
||||
"title": "Current server",
|
||||
"type": "string",
|
||||
"default": "41.50.73.31:5000",
|
||||
"default": "192.0.2.0:5000",
|
||||
"description": "The current command server the monkey is communicating with"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue