
btw code is :
- Code: Select all
entry_len = 0
choices = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789_$&#@ "
entryArray = [ choices[0] ]
choices_index = -1
stop = False
while stop == False:
entry = ""
for m in range( len(entryArray) ):
entry += entryArray[m]
print(entry)
choices_index += 1
if choices_index == len(choices): choices_index = 0
array_index = 0
while array_index != None:
if entryArray[array_index] == choices[-1]:
entryArray[array_index] = choices[0]
try:
a = entryArray[array_index + 1]
del a
array_index += 1
except:
entryArray.append( choices[0] )
array_index = None
else:
entryArray[array_index] = choices[ choices.index( entryArray[array_index] ) + 1 ]
array_index = None
Ripped this baby off of Hell bound hackers forum and then fixed it.