forked from p15670423/monkey
made get_exploit_config non-static for readability
This commit is contained in:
parent
e1b1236fb3
commit
3e7d7425e4
|
@ -38,8 +38,7 @@ class WebRCE(HostExploiter):
|
||||||
self.HTTP = [str(port) for port in self._config.HTTP_PORTS]
|
self.HTTP = [str(port) for port in self._config.HTTP_PORTS]
|
||||||
self.skip_exist = self._config.skip_exploit_if_file_exist
|
self.skip_exist = self._config.skip_exploit_if_file_exist
|
||||||
|
|
||||||
@staticmethod
|
def get_exploit_config(self):
|
||||||
def get_exploit_config():
|
|
||||||
"""
|
"""
|
||||||
Method that creates a dictionary of configuration values for exploit
|
Method that creates a dictionary of configuration values for exploit
|
||||||
:return: configuration dict
|
:return: configuration dict
|
||||||
|
|
Loading…
Reference in New Issue