diff --git a/monkey/infection_monkey/exploit/powershell.py b/monkey/infection_monkey/exploit/powershell.py index 0ce03b880..cafcebb3e 100644 --- a/monkey/infection_monkey/exploit/powershell.py +++ b/monkey/infection_monkey/exploit/powershell.py @@ -53,13 +53,13 @@ class PowershellExploiter(HostExploiter): usernames=self._config.exploit_user_list ) except FailedExploitationError: - LOG.info("Failed exploitation using username list.") + LOG.info("Failed exploitation using configured usernames only.") try: self.client = self.exploit_with_credentials( self._config.get_exploit_user_password_pairs() ) except FailedExploitationError: - LOG.info("Failed exploitation using credentials from configuration. Quitting.") + LOG.info("Failed exploitation using configured credentials. Quitting.") return False arch = self.get_host_arch()