Wordlist + Bruteforce Attack
#1
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 ?
#2
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
#3
(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 )