import itertools
res = itertools.product("0123456789", repeat=int(10))
output = open('dictionary.txt', 'wb')
for i in res:
output.write(''.join(i)+"\n")
output.close()
With this code you can get all the possible password of length 1-10 with the charset of only numbers
But you’ll have to have place on your computer, because it’ll generate 11111111111 lines ( 112 GB ) ;)
Or //
apt-get install crunch
crunch 10 10 0123456789 > dictionary
This time, only length 10 with the same charset.
Then, 10000000000 lines for 102 GB.
Oh and if you don’t want to create such a huge file, you can modify the python code so you can bruteforce without creating any file :)
Therefore, +1 for what 1337boy said, it’s likely a shitty list :)