How can I generate all possible combinations of word list?
#1
I want to create a word list:
Boy
Man
Kid

And have all possible combinations outputted with no repeating words:
Boy
BoyMan
ManBoy
BoyKidMan
ManKidBoy
........etc.....

I've tried getting hashcat-utils combipow to work but im having a lot of difficulty installing. Are there any easier methods/alternatives that could help me achieve this?
Reply
#2
https://hashcat.net/wiki/doku.php?id=rule_based_attack

./hashcat --force --stdout your_list.txt -r rules/dive.rule > output_list.txt
Reply
#3
(01-06-2023, 01:19 AM)marc1n Wrote: https://hashcat.net/wiki/doku.php?id=rule_based_attack

./hashcat --force --stdout your_list.txt -r rules/dive.rule > output_list.txt

what op wants to achieve is a task for princeprocessor, dive is a rulesset any not suitable for this caseĀ 

https://github.com/hashcat/princeprocessor
Reply
#4
I cannot find dive.rule.
Where is it installed in The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali)?
Reply