diff --git a/chaos_monkey/config.py b/chaos_monkey/config.py index 501663958..2a0e58cae 100644 --- a/chaos_monkey/config.py +++ b/chaos_monkey/config.py @@ -144,7 +144,7 @@ class Configuration(object): scanner_class = TcpScanner finger_classes = [SMBFinger, SSHFinger, PingScanner, HTTPFinger, MySQLFinger, ElasticFinger] - exploiter_classes = [SmbExploiter, WmiExploiter, RdpExploiter, Ms08_067_Exploiter, # Windows exploits + exploiter_classes = [SmbExploiter, WmiExploiter, # Windows exploits SSHExploiter, ShellShockExploiter, SambaCryExploiter, # Linux ElasticGroovyExploiter, # multi ] diff --git a/chaos_monkey/example.conf b/chaos_monkey/example.conf index d04b82a55..a2476bd03 100644 --- a/chaos_monkey/example.conf +++ b/chaos_monkey/example.conf @@ -32,8 +32,6 @@ "SSHExploiter", "SmbExploiter", "WmiExploiter", - "RdpExploiter", - "Ms08_067_Exploiter", "ShellShockExploiter", "ElasticGroovyExploiter", "SambaCryExploiter", diff --git a/monkey_island/cc/services/config.py b/monkey_island/cc/services/config.py index 700dbed90..6e81e716a 100644 --- a/monkey_island/cc/services/config.py +++ b/monkey_island/cc/services/config.py @@ -33,14 +33,14 @@ SCHEMA = { "enum": [ "RdpExploiter" ], - "title": "RdpExploiter" + "title": "RdpExploiter (UNSAFE)" }, { "type": "string", "enum": [ "Ms08_067_Exploiter" ], - "title": "Ms08_067_Exploiter" + "title": "Ms08-067 Exploiter (UNSAFE)" }, { "type": "string", @@ -380,8 +380,6 @@ SCHEMA = { "default": [ "SmbExploiter", "WmiExploiter", - "RdpExploiter", - "Ms08_067_Exploiter", "SSHExploiter", "ShellShockExploiter", "SambaCryExploiter",