Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62a874 commit f1f6364Copy full SHA for f1f6364
1 file changed
lib/utils/hash.py
@@ -362,8 +362,8 @@ def attackDumpedTable():
362
if attack_dict:
363
message = "recognized possible password hashes in column%s " % ("s" if len(col_passwords) > 1 else "")
364
message += "'%s'. Do you want to " % ", ".join(col for col in col_passwords)
365
- message += "crack them via a dictionary-based attack? [y/N/q]"
366
- test = readInput(message, default="N")
+ message += "crack them via a dictionary-based attack? %s" % ("[y/N/q]" if conf.multipleTargets else "[Y/n/q]")
+ test = readInput(message, default="N" if conf.multipleTargets else "Y")
367
368
if test[0] in ("n", "N"):
369
return
0 commit comments