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.
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):
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