Combinator Attac
#6
Exclamation 

Combinator will only do 2 of each word. If you would like 4 of each. You can do the following.
Code:
hashcat -a 1 dict1.txt dict1.txt --stdout > dict1combined.txt
hashcat -a 1 dict1combined.txt dict1combined.txt --stdout | hashcat -m 13000 hash.txt

Or for the second line
Code:
hashcat -a 1 -m 13000 hash.txt dict1combined.txt dict1combined.txt

Be mindful that combining wordlist has exponential growth. So if you start doing it 4 or 5 times it will be terrabytes in size.


Messages In This Thread
Combinator Attac - by jonass - 01-22-2018, 10:44 PM
RE: Combinator Attac - by atom - 01-23-2018, 11:36 AM
RE: Combinator Attac - by jonass - 01-23-2018, 01:37 PM
RE: Combinator Attac - by atom - 01-24-2018, 11:03 AM
RE: Combinator Attac - by jonass - 01-24-2018, 08:26 PM
RE: Combinator Attac - by Skwerl23 - 01-25-2018, 01:56 AM
RE: Combinator Attac - by jonass - 01-28-2018, 11:16 AM
RE: Combinator Attac - by Skwerl23 - 01-31-2018, 07:26 AM