8000 fixed typo by aNiceGuy · Pull Request #102 · sqlmapproject/sqlmap · GitHub
[go: up one dir, main page]

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/utils/hash.py
Original file line n 5F66 umber Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def attackDumpedTable():
if attack_dict:
message = "recognized possible password hashes in column%s " % ("s" if len(col_passwords) > 1 else "")
message += "'%s'. Do you want to " % ", ".join(col for col in col_passwords)
message += "crack them via a dictionary-based attack? [y/N/q]"
message += "crack them via a dictionary-based attack? [Y/n/q]"
test = readInput(message, default="Y")

if test[0] in ("n", "N"):
Expand Down
0