Possible development to support three wordlists at once?
#20
Star 
Thank you undeath. Like you said, it will take forever. Below is my current status update:

Session..........: 2018-06-15
Status...........: Running
Hash.Type........: PBKDF2-HMAC-SHA256
Hash.Target......: sha256:100000:itFxKrXWMtjE2sB7eS67Fw==:o6i4645znIb2...EewmY=
Time.Started.....: Fri Jun 15 16:52:19 2018 (1 min, 12 secs)
Time.Estimated...: Sat Mar 08 12:13:16 2081 (62 years, 266 days)
Guess.Base.......: File (D:\hashcat-stuff\HashcatGUI_1.00r3\comb-with-space.txt), Left Side
Guess.Mod........: File (D:\hashcat-stuff\hashcat-4.1.0\agile.txt), Right Side
Speed.Dev.#1.....:     3110 H/s (6.04ms) @ Accel:32 Loops:16 Thr:640 Vec:1
Recovered........: 0/1 (0.00%) Digests, 0/1 (0.00%) Salts
Progress.........: 122880/6156660823552 (0.00%)
Rejected.........: 0/122880 (0.00%)
Restore.Point....: 0/335915584 (0.00%)
Candidates.#1....: aardvark aardvark abaci -> abandon quilting abaci
HWMon.Dev.#1.....: Temp: 67c Fan: 72% Util: 92% Core:1657MHz Mem:3504MHz Bus:16

Anyone else viewing this thread with the same question. Please use undeath's 
Code:
$ sed 's/$/ /g' wordlist.txt > with-space.txt
 
Code:
$ combinator.bin with-space.txt with-space.txt > comb-with-space.txt
and royce's 
Code:
# Convert salt and hash from hex to raw and then to base64:
$ echo -n '00bb202b205f064e30f6fae101162a2e' | xxd -p -r | base64
ALsgKyBfBk4w9vrhARYqLg==
$ echo -n '91976be95cd28e55e580ee9f69a2139202a9b65eabfbbf33c99bc42e3665564d' | xxd -p -r | base64
kZdr6VzSjlXlgO6faaITkgKptl6r+78zyZvELjZlVk0=

# Prepare hashfile in the expected format for hashcat
$ cat test.hash
sha256:100000:ALsgKyBfBk4w9vrhARYqLg==:kZdr6VzSjlXlgO6faaITkgKptl6r+78zyZvELjZlVk0=

# Perform simple attack, piping in expected plaintext. The hash is cracked as expected.
$ echo 'tanbark artistic callus' | hashcat --quiet -m 10900 -a 0 test.hash
sha256:100000:ALsgKyBfBk4w9vrhARYqLg==:kZdr6VzSjlXlgO6faaITkgKptl6r+78zyZvELjZlVk0=:tanbark artistic callus
with the above status update to gauge whether you have the power to hash it, or not.


Messages In This Thread
RE: Possible development to support three wordlists at once? - by vigilantbag - 06-16-2018, 02:01 AM