Processing multiple files with hashes
#4
(05-28-2024, 09:23 AM)tao Wrote:
(05-28-2024, 02:56 AM)slyexe Wrote: Using windows or Linux? Can easily create a batch file in windows or any scripting language you're familiar with linux.

Thanks for your reply.
OK. That is, only by external means (additional batch script)? Is there no such functionality inside the Hashcat? Is there a recommended script code (Windows or Linux)?

Heres one for Linux I use,

vim batcher.sh
Insert
Code:
#!/bin/bash
hashcat -m 0 -a 0 hash password -w 4 -O
hashcat -m 0 -a 0 hash1 password -w 4 -O
hashcat -m 0 -a 0 hash2 password -w 4 -O
hashcat -m 0 -a 0 hash3 password -w 4 -O
Esc
:x
chmod +x batcher.sh
./batcher.sh
Reply


Messages In This Thread
Processing multiple files with hashes - by tao - 05-27-2024, 10:22 PM
RE: Processing multiple files with hashes - by CmdFlaz - 05-28-2024, 09:41 AM