Processing multiple files with hashes
#6
(05-28-2024, 09:41 AM)CmdFlaz Wrote:
(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

eh, this is very slow... while at each launch all checks and tests will pass, the file with passwords will be processed and work will finally begin... this increases the processing time several times.
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 tao - 05-29-2024, 08:15 PM