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 48d23df commit ef332d4Copy full SHA for ef332d4
project/handlers.py
@@ -92,7 +92,15 @@ def brute_freq_handler(args):
92
# Write to the file,
93
# If an output path specified
94
if args.output:
95
- write_file(analyzed, args.output)
+ s = ''
96
+ found = False
97
+ for i in analyzed:
98
+ if analyzed[i] > 60:
99
+ s += f'{round(analyzed[i], 1)}% : {i}\n'
100
+ found = True
101
+ if not found:
102
+ s = f'No Matching Sentences Found For The Given Wordlist'
103
+ write_file(s, args.output)
104
else:
105
found = False
106
for i in analyzed:
0 commit comments