Custom Wordlist Concatentation - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Custom Wordlist Concatentation (/thread-6977.html) |
Custom Wordlist Concatentation - somernr - 10-30-2017 Hi guys, I'm new to the forum. I've been playing with Hashcat for a couple weeks now, specifically the combinator mode. I have an array that contains a wordlist which has roughly 100 words in it. They are then organized into sub-arrays by length but I can collapse them into one array or a flat wordlist file if that better serves the solution. IE: [array] [4] [0]desk [1]olds [2]dawn [3] [0]get [1]tie [2]eye [2] [0]to [1] [0]a The goal is to combine all words in an array similar to the above one, in every possible combination. IE: toa ato aeye eyea atoeye aeyeto eyetoa eyeato would all be correct outputs. Is there something in the hashcat toolset that can help me with this or am I basically on my own? Thank you for taking the time to reply. somernr RE: Custom Wordlist Concatentation - royce - 10-30-2017 Welcome! Unless it is an extremely slow hash, or the wordlists are much larger than the example that you're giving, I would just use princeprocessor to generate all possible combinations. RE: Custom Wordlist Concatentation - somernr - 10-30-2017 (10-30-2017, 03:23 AM)royce Wrote: Welcome! Hi Royce, Thank you for the reply! I feel bad, I didn't even look at princeprocessor because the wiki was blank. I've read the readme now but I don't see much else for documentation - are there any other sources of info on it or should I just dig into the source? The biggest concern I have is that I have some words that are 14 characters long. Are 4 character words the max size or is there no limit to the length the words can be? My second question is when the readme gives the example of:
IE would it produce both "itme" AND "meit"? Thanks again - your reply was so fast! RE: Custom Wordlist Concatentation - royce - 10-30-2017 princeprocessor can generate all possible combinations so quickly, and hashcat can (usually) use them so quickly, there's no real value in trying to narrow down the range of possibilities. Code: $ cat words.list (Also, which wiki was blank? If it was on the hashcat website, let me know the URL and I'll take a look) RE: Custom Wordlist Concatentation - somernr - 10-30-2017 (10-30-2017, 03:50 AM)royce Wrote: princeprocessor can generate all possible combinations so quickly, and hashcat can (usually) use them so quickly, there's no real value in trying to narrow down the range of possibilities. Ugggggggh - amazing! This is EXACTLY what I am looking for. Thank you. This is the blank wiki link(maybe I should have clarified it just says TBD) : https://hashcat.net/wiki/doku.php?id=princeprocessor RE: Custom Wordlist Concatentation - royce - 10-30-2017 You're welcome! OK, I added a little more content to that wiki page, which should hopefully help the next person, anyway. Thanks for the nudge! RE: Custom Wordlist Concatentation - Nester10 - 10-31-2017 Thank you, very useful for me as well! |