Hello all, someone who work with python canl help me
#5
(07-16-2020, 05:09 AM)philsmd Wrote: it depends on which operating system (linux, windows, macOS) you use.

on linux you could just take the output of hashcat and use the "grep" tool to filter it.

Code:
hashcat -m 0 -a 3 --status --status-timer 5 --increment hash.txt ?a?a?a?a?a?a?a?a?a | grep "Candidates" > output_file.txt

there exists similar tools also for windows/powershell to filter the output and search for a specific string line. If you do not need to limit the output, you could also not filter it and just redirect everything to a file (or filter it later on):
Code:
hashcat -m 0 -a 3 --status --status-timer 5 --increment hash.txt ?a?a?a?a?a?a?a?a?a > output_file.txt

thank you very much for help me
Srry if i bother someone, im learning about all, and this is to much advance for me
Reply


Messages In This Thread
RE: Hello all, someone who work with python canl help me - by kerstui - 07-17-2020, 03:50 AM