agent: Fix typos in powershell remoting exploiter

This commit is contained in:
Shreya Malviya 2021-08-20 20:29:32 +05:30
parent 5419200d61
commit ba8c44d22c
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class PowershellExploiter(HostExploiter):
_EXPLOITED_SERVICE = "PowerShell Remoting (WinRM)" _EXPLOITED_SERVICE = "PowerShell Remoting (WinRM)"
def __init__(self, host: VictimHost): def __init__(self, host: VictimHost):
# If pysrp will inherit root logger, it will log extensive and potentially sensitive info # If pypsrp will inherit root logger, it will log extensive and potentially sensitive info
logging.getLogger("pypsrp").setLevel(logging.ERROR) logging.getLogger("pypsrp").setLevel(logging.ERROR)
logging.getLogger(spnego.__name__).setLevel(logging.ERROR) logging.getLogger(spnego.__name__).setLevel(logging.ERROR)
logging.getLogger(connectionpool.__name__).setLevel(logging.ERROR) logging.getLogger(connectionpool.__name__).setLevel(logging.ERROR)
@ -55,7 +55,7 @@ class PowershellExploiter(HostExploiter):
self._config.get_exploit_user_password_pairs() self._config.get_exploit_user_password_pairs()
) )
except FailedExploitationError: except FailedExploitationError:
LOG.info("Failed exploitation using credentials from configuration. Quiting.") LOG.info("Failed exploitation using credentials from configuration. Quitting.")
return False return False
arch = self.get_host_arch() arch = self.get_host_arch()