forked from p15670423/monkey
Started modifying win_ms08_067.py to avoid defender
This commit is contained in:
parent
634dab37aa
commit
bdb7fd4a23
|
@ -164,6 +164,8 @@ class Ms08_067_Exploiter(HostExploiter):
|
||||||
super(Ms08_067_Exploiter, self).__init__(host)
|
super(Ms08_067_Exploiter, self).__init__(host)
|
||||||
|
|
||||||
def is_os_supported(self):
|
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 \
|
if self.host.os.get('type') in self._TARGET_OS_TYPE and \
|
||||||
self.host.os.get('version') in list(self._windows_versions.keys()):
|
self.host.os.get('version') in list(self._windows_versions.keys()):
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue