1
Beginner's Corner / Re: [Python]md5 random cracker
« on: November 24, 2014, 08:16:44 PM »It would save the time to create a hash, but the more passwords you created the more often your algorithm will end up creating useless passwords over and over until it finds one that isn't already used. Also: the memory that you need to hold the already generated passwords will increase a lot.
There is no benefit of having randomly generated passwords compared to generate in order.
The amount of steps or time that it takes will be the same. In both cases you need luck to get the answer early.
I think the idea has been born...so I will generate a lot of passwords during this process.
Passwords that I will store in list are useless trash but why not make wordlist from that passwords!
Most wordlists I saw are well ...made of words but the wordlist I would made from this would be made totally random characters!
Maybe I could make more advanced cracker that would have different modes:
1.regular bruteforce
2.dictionary attack
3.random bruteforce with extra options(checking if passwords are already tried&wordlist generator)
Of course I wouldn't store passwords during process but on exit.
Am I overcomplicating?Is this good idea?