Skip to content

Commit

Permalink
Do not code before coffee!
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnfoo authored Jul 20, 2020
1 parent 347e1a4 commit b7d0977
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ntlmrecon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ def main():
else:
all_combos.append(str(record+"/"+word))

results = pool.map(gather_ntlm_info, all_combos)
results = [x for x in results if x]
if results:
write_records_to_csv(results, args.outfile)
print(colored('[+] Info dor domain {} saved to {}. Happy hacking!'.format(record, args.outfile), 'green'))
results = pool.map(gather_ntlm_info, all_combos)
results = [x for x in results if x]
if results:
write_records_to_csv(results, args.outfile)
print(colored('[+] Info dor domain {} saved to {}. Happy hacking!'.format(record, args.outfile), 'green'))



0 comments on commit b7d0977

Please sign in to comment.