Fix user_password_pairs indentation bug in

This commit is contained in:
Itay Mizeretz 2017-09-04 16:44:40 +03:00
parent 024ebfcbe6
commit 40b03793c9
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ class SSHExploiter(HostExploiter):
LOG.info("SSH port is closed on %r, skipping", host)
return False
user_password_pairs = self._config.get_exploit_user_password_pairs()
user_password_pairs = self._config.get_exploit_user_password_pairs()
exploited = False
for user, curpass in user_password_pairs:

View File

@ -29,7 +29,7 @@ class WmiExploiter(HostExploiter):
LOG.info("Can't find suitable monkey executable for host %r", host)
return False
user_password_pairs = self._config.get_exploit_user_password_pairs()
user_password_pairs = self._config.get_exploit_user_password_pairs()
for user, password in user_password_pairs:
LOG.debug("Attempting to connect %r using WMI with password '%s'",