Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python help
#1
Sad 
Hello :

im new to python and i need a bit of help ..

im trying to build one password finder but im stuck .

Here is the code i have .

* problem - i want to try every password in file in a input box from other software in my pc
i dont know how to call or how to python detect inputbox from the other software .

 # try password list one by one 

file = open("rockyou2021.txt", 'r')


for password in file:

    try:
        
        print("Password Found: {}".format(password))
        break

    except:

        print("Trying password: {}".format(password))

        continue
Best regards

cagueca
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020