What attack to use?
#8
Your thinking is too narrow.

Let's say you wanted to do 3-way combinations of your 18-word wordlist (we'll call it 18words.txt). You have a couple different options.

Option 1:
Code:
./combinator.bin 18words.txt 18words.txt >comb2.txt

Then run oclHashcat with -a 1 comb2.txt 18words.txt. This is good for fast hashes so that you can gain GPU acceleration, and also for wordlists that are too large to store on disk if you combine more than 2x.

Option 2:
Code:
./combinator.bin 18words.txt 18words.txt >comb2.txt
./combinator.bin comb2.txt 18words.txt >comb3.txt

Then run oclHashcat with comb3.txt. This is how you'd do it before combinator3.bin existed. This is good for slow hashes since you don't need an amplifier, and also for very small wordlists that aren't too big when combined 3x.

Option3:
Code:
./combinator3.bin 18words.txt 18words.txt 18words.txt >comb3.txt

Just like above, run oclHashcat with comb3.txt.

If you wanted to do a 4-way combination instead, you would simply run oclHashcat with -a 1 comb3.txt 18words.txt

Hopefully that makes things more clear.


Messages In This Thread
What attack to use? - by Marc05 - 01-21-2016, 10:44 PM
RE: What attack to use? - by epixoip - 01-22-2016, 06:57 AM
RE: What attack to use? - by Marc05 - 01-22-2016, 07:52 AM
RE: What attack to use? - by epixoip - 01-22-2016, 11:21 AM
RE: What attack to use? - by Marc05 - 01-22-2016, 05:07 PM
RE: What attack to use? - by epixoip - 01-22-2016, 10:03 PM
RE: What attack to use? - by Marc05 - 01-22-2016, 11:52 PM
RE: What attack to use? - by epixoip - 01-23-2016, 12:17 AM
RE: What attack to use? - by Marc05 - 01-23-2016, 12:44 AM
RE: What attack to use? - by epixoip - 01-23-2016, 02:20 AM
RE: What attack to use? - by Marc05 - 01-23-2016, 03:46 AM
RE: What attack to use? - by epixoip - 01-23-2016, 10:21 AM
RE: What attack to use? - by magnum - 01-29-2016, 01:20 AM