Brute Force Password Hacker question
In a Brute Force Password Hacker I'm making, I want to let the machine try two letters AFTER one letter words. How would I do this? btw I don't want to import everything Becuase I understand nothing about a package I import
Thanks!
Voters
What I did when I made one of these, I made a while loop with a system to detect when one letter words were done. You can either try
or you can look at this for some help
oh so like do a list in order. k
then what about AFTER the two letter passwords?
@HappyLunchBox I updated my explanation so it could be random and progressively update
@robowolf so it works for two letter passwords, three letter passwords etc.?
@HappyLunchBox It should work
@robowolf kthxbye
@robowolf
'''python
def fast():
global guess, attempts, m, n
while (guess != password):
guess = ""
for char in range(len(chars)):
'''
it has a bug for some reason
@robowolf i did the indentations right it's just copy and pasting, but I still have a bug