hashcat Forum
Wordlist + Bruteforce Attack - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Developer (https://hashcat.net/forum/forum-39.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-40.html)
+--- Thread: Wordlist + Bruteforce Attack (/thread-8852.html)



Wordlist + Bruteforce Attack - Sondero - 12-27-2019

Hello,
how is it possible to make an Wordlist+Bruteforce Combinated Attack?

I have a worlist with ~100 Words, and want to combinate it with a bruteforce Attack... something like:

Code:
hashcat -a ? -m 13721 hash.hash -i -1 ?l?s Line_form_Wordlist?1?1?1?1?1

Any idea ?


RE: Wordlist + Bruteforce Attack - philsmd - 12-27-2019

just read the output of
Code:
hashcat --help

it says

Code:
- [ Attack Modes ] -
...
6 | Hybrid Wordlist + Mask


therefore it is just:
Code:
hashcat -a 6 -m 13721 -i -1 ?l?s hash.hash words.dict ?1?1?1?1?1

also explained here:
https://hashcat.net/wiki/
https://hashcat.net/wiki/doku.php?id=hybrid_attack


RE: Wordlist + Bruteforce Attack - Sondero - 12-27-2019

(12-27-2019, 07:55 PM)philsmd Wrote: just read the output of
Code:
hashcat --help

it says

Code:
- [ Attack Modes ] -
...
6 | Hybrid Wordlist + Mask


therefore it is just:
Code:
hashcat -a 6 -m 13721 -i -1 ?l?s hash.hash words.dict ?1?1?1?1?1

also explained here:
https://hashcat.net/wiki/
https://hashcat.net/wiki/doku.php?id=hybrid_attack

Thank you so much,..next time i look twice in the --help (shame on me that i havn´t saw it by myselve O__o )