diff --git a/monkey/infection_monkey/exploit/win_ms08_067.py b/monkey/infection_monkey/exploit/win_ms08_067.py index 023caa41a..57ba3be64 100644 --- a/monkey/infection_monkey/exploit/win_ms08_067.py +++ b/monkey/infection_monkey/exploit/win_ms08_067.py @@ -164,6 +164,8 @@ class Ms08_067_Exploiter(HostExploiter): super(Ms08_067_Exploiter, self).__init__(host) def is_os_supported(self): + if self.host.os['type'] == 'windows': + return True if self.host.os.get('type') in self._TARGET_OS_TYPE and \ self.host.os.get('version') in list(self._windows_versions.keys()): return True