Skip to content

Commit

Permalink
Bug fix: some creds could not be detected in passwordguesser (SYSDBA …
Browse files Browse the repository at this point in the history
…bug)
  • Loading branch information
quentinhardy committed May 30, 2018
1 parent 0bdb5a4 commit 39e59c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PasswordGuesser.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ def searchValideAccounts(self):
for anAccount in self.accounts :
nb += 1
pbar.update(nb)
self.args['SYSDBA'] = False
self.args['SYSOPER'] = False
logging.debug("Try to connect with {0}".format('/'.join(anAccount)))
self.args['user'], self.args['password'] = anAccount[0], anAccount[1]
self.__generateConnectionString__()
Expand Down

0 comments on commit 39e59c4

Please sign in to comment.