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 3ca4b7c commit 12b3311Copy full SHA for 12b3311
1 file changed
lib/utils/hash.py
@@ -849,9 +849,9 @@ def dictionaryAttack(attack_dict):
849
try:
850
if choice == '2':
851
message = "what's the custom dictionary's location?\n"
852
- _ = readInput(message)
853
- if _:
854
- dictPaths = [readInput(message)]
+ dictPath = readInput(message)
+ if dictPath:
+ dictPaths = [dictPath]
855
logger.info("using custom dictionary")
856
elif choice == '3':
857
message = "what's the list file location?\n"
0 commit comments