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" },