Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 01d24cb

Browse files
committed
Minor adjustment of logging messages
1 parent 9c3c9a9 commit 01d24cb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lib/utils/hash.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,8 @@ def attackDumpedTable():
605605
if not count:
606606
return
607607

608-
infoMsg = "analyzing table dump for possible password hashes"
609-
logger.info(infoMsg)
608+
debugMsg = "analyzing table dump for possible password hashes"
609+
logger.debug(debugMsg)
610610

611611
found = False
612612
col_user = ''
@@ -666,8 +666,8 @@ def attackDumpedTable():
666666
if hash_:
667667
lut[hash_.lower()] = password
668668

669-
infoMsg = "postprocessing table dump"
670-
logger.info(infoMsg)
669+
debugMsg = "post-processing table dump"
670+
logger.debug(debugMsg)
671671

672672
for i in xrange(count):
673673
for column in columns:

0 commit comments

Comments
 (0)