Posts: 79
Threads: 15
Joined: Dec 2019
12-27-2019, 07:45 PM
(This post was last modified: 12-27-2019, 07:47 PM by Sondero.)
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 ?
Posts: 2,267
Threads: 16
Joined: Feb 2013
just read the output of
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
Posts: 79
Threads: 15
Joined: Dec 2019
(12-27-2019, 07:55 PM)philsmd Wrote: just read the output of
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 )