Merge pull request #308 from VakarisZ/ssh_exception_revert

Reverted ssh exception handling changes.
This commit is contained in:
VakarisZ 2019-04-18 09:04:36 +03:00 committed by GitHub
commit 6d99a892d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class SSHExploiter(HostExploiter):
self.report_login_attempt(True, user, curpass)
break
except paramiko.AuthenticationException as exc:
except Exception as exc:
LOG.debug("Error logging into victim %r with user"
" %s and password '%s': (%s)", self.host,
user, curpass, exc)