From 1ce17a3bc85c2691a90427a8c547779420503b7d Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Fri, 11 Oct 2019 17:21:17 +0300 Subject: [PATCH] Added MSSQL exploiter to defaults and hadoop port to default scan ports --- monkey/infection_monkey/example.conf | 6 ++++-- monkey/monkey_island/cc/services/config_schema.py | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/monkey/infection_monkey/example.conf b/monkey/infection_monkey/example.conf index 84d474db3..194e18625 100644 --- a/monkey/infection_monkey/example.conf +++ b/monkey/infection_monkey/example.conf @@ -44,7 +44,8 @@ "Struts2Exploiter", "WebLogicExploiter", "HadoopExploiter", - "VSFTPDExploiter" + "VSFTPDExploiter", + "MSSQLExploiter" ], "finger_classes": [ "SSHFinger", @@ -93,7 +94,8 @@ 3306, 8008, 9200, - 7001 + 7001, + 8088 ], "timeout_between_iterations": 10, "use_file_logging": true, diff --git a/monkey/monkey_island/cc/services/config_schema.py b/monkey/monkey_island/cc/services/config_schema.py index c1b53e9ff..843f4b4ac 100644 --- a/monkey/monkey_island/cc/services/config_schema.py +++ b/monkey/monkey_island/cc/services/config_schema.py @@ -753,7 +753,8 @@ SCHEMA = { "Struts2Exploiter", "WebLogicExploiter", "HadoopExploiter", - "VSFTPDExploiter" + "VSFTPDExploiter", + "MSSQLExploiter" ], "description": "Determines which exploits to use. " + WARNING_SIGN @@ -899,7 +900,8 @@ SCHEMA = { 8008, 3306, 9200, - 7001 + 7001, + 8088 ], "description": "List of TCP ports the monkey will check whether they're open" },