Possible Password Generator 03-09-2014, 04:42 AM
#1
This is really simple and doesn't take much at all.
All you have to do is put a character set.
Basically, it takes your character set, uses the amount that is in the character set, then mutates it to have all different possible combinations.
The only problem is that you need to know all characters in it, but they don't have to be in the correct order of the password.
All you have to do is put a character set.
Code:
import itertools
chars = input('Includes: ')
gen = itertools.permutations(chars,len(chars))
for i in gen: print(''.join(i))Basically, it takes your character set, uses the amount that is in the character set, then mutates it to have all different possible combinations.
The only problem is that you need to know all characters in it, but they don't have to be in the correct order of the password.
![[Image: BXqGARG.png]](https://i.imgur.com/BXqGARG.png)








![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)


