Help with 3 word combination
#3
As explained here (https://gist.github.com/roycewilliams/18...45692bccc2) by Royce, I should also consider using PRINCE.

Put all your possible candidates in one wordlist and put a space in front of them.
Use prince and pipe it into hashcat.
Use the rule "delete first character, and replace all spaces by -"

This should give the following:

Code:
cat wordlist.txt
  aaa
  bbb
  ccc
  AAA
  BBB
  CCC

Code:
pp64.exe --elem-cnt-min=3 --elem-cnt-max=3 wordlist.txt | hashcat.exe --stdout -j "[ s -"
aaa-aaa-aaa
bbb-aaa-aaa
ccc-aaa-aaa
AAA-aaa-aaa
BBB-aaa-aaa
CCC-aaa-aaa
aaa-bbb-aaa
bbb-bbb-aaa
ccc-bbb-aaa
AAA-bbb-aaa
BBB-bbb-aaa
CCC-bbb-aaa
aaa-ccc-aaa
bbb-ccc-aaa
ccc-ccc-aaa
AAA-ccc-aaa
BBB-ccc-aaa
CCC-ccc-aaa
aaa-AAA-aaa
bbb-AAA-aaa
ccc-AAA-aaa
AAA-AAA-aaa
BBB-AAA-aaa
CCC-AAA-aaa
[...]
Reply


Messages In This Thread
Help with 3 word combination - by Dawbs - 10-10-2019, 08:32 PM
RE: Help with 3 word combination - by EnviableOne - 12-13-2019, 01:31 PM
RE: Help with 3 word combination - by Banaanhangwagen - 12-14-2019, 02:34 PM