Posts: 2
Threads: 1
Joined: Feb 2024
Hi
I try to understand and use hashcat to find password with bruteforce.
To try this I use winrar and I create a small archive with a password of only numbers (for the facility to find with my 6900xt) and set 12345678 as password.
I use rar2jonh on this archive to find the hash to use on hashcat.
This is my command, but hashcat not find the password.
What I wrong?
hashcat.exe -m 13000 -a 3 $rar5$16$d8487b991f0789aeed02fa40388dfff9$15$f60afe80aae33f652c10eac3b38a4f4a$8$07d57b8102e75a84 '?d?d?d?d?d?d?d?d?'
Posts: 886
Threads: 15
Joined: Sep 2017
for testing purposes use example hashes from this list
https://hashcat.net/wiki/doku.php?id=example_hashes
maybe as suggested here (nice way to push this btw) the rar2john tool is buggy, but as mentioned, thats no hashcat problem
https://hashcat.net/forum/thread-11802-p...l#pid60119
Posts: 347
Threads: 3
Joined: May 2010
Remove single quotes around the mask from your command line (and the extra question mark, though hashcat will warn you about that one).
Posts: 2
Threads: 1
Joined: Feb 2024
UAO it's work removing the single quote from the mask (and also che the extra question mark that is a refuse)
$rar5$16$d8487b991f0789aeed02fa40388dfff9$15$f60afe80aae33f652c10eac3b38a4f4a$8$07d57b8102e75a84:12345678
Session..........: hashcat
Status...........: Cracked
Hash.Mode........: 13000 (RAR5)
Hash.Target......: $rar5$16$d8487b991f0789aeed02fa40388dfff9$15$f60afe...e75a84
Time.Started.....: Tue Feb 06 18:56:31 2024 (12 secs)
Time.Estimated...: Tue Feb 06 18:56:43 2024 (0 secs)
Kernel.Feature...: Pure Kernel
Guess.Mask.......: ?d?d?d?d?d?d?d?d [8]
Guess.Queue......: 1/1 (100.00%)
Speed.#1.........: 113.5 kH/s (11.17ms) @ Accel:128 Loops:32 Thr:256 Vec:1
Recovered........: 1/1 (100.00%) Digests (total), 1/1 (100.00%) Digests (new)
Progress.........: 1310720/100000000 (1.31%)
Rejected.........: 0/1310720 (0.00%)
Restore.Point....: 0/10000000 (0.00%)
Restore.Sub.#1...: Salt:0 Amplifier:0-1 Iteration:32768-32799
Candidate.Engine.: Device Generator
Candidates.#1....: 12345678 -> 17151220
Hardware.Mon.#1..: Temp: 55c Fan: 37% Util: 56% Core:1450MHz Mem:1994MHz Bus:16
Started: Tue Feb 06 18:56:26 2024
Stopped: Tue Feb 06 18:56:43 2024
Thank you very much!!!