From eb9d768e48e1ef5c8d58d20bed4afc63256b1098 Mon Sep 17 00:00:00 2001 From: Itay Mizeretz Date: Wed, 13 Sep 2017 09:59:06 +0300 Subject: [PATCH] Change default server ip to original one --- monkey_island/cc/resources/monkey_configuration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monkey_island/cc/resources/monkey_configuration.py b/monkey_island/cc/resources/monkey_configuration.py index 0f8ccb02f..1af35e647 100644 --- a/monkey_island/cc/resources/monkey_configuration.py +++ b/monkey_island/cc/resources/monkey_configuration.py @@ -362,7 +362,7 @@ SCHEMA = { "type": "string" }, "default": [ - "10.15.1.7:5000" + "41.50.73.31:5000" ], "description": "List of command servers to try and communicate with (format is :)" }, @@ -382,7 +382,7 @@ SCHEMA = { "current_server": { "title": "Current server", "type": "string", - "default": "10.15.1.7:5000", + "default": "41.50.73.31:5000", "description": "The current command server the monkey is communicating with" } }