Password cracker algorithm

Password cracker algorithm 

Task 

My task is to create a password brute force cracker in python.  

Decomposition 

First, I will open a wordlist. The wordlist I'm using is rockyou.txt which has over 14 million passwords. Then I'll need to cycle through the wordlist and match the password to the word in the list. If it finds the password, it will stop the loop otherwise it will continue. 

Abstraction 

    • Open wordlist 
    • Put words into array 
    • Loop through wordlist 
    • Compare password to listed word 
    • Return correct result 

Final code

Comments

Popular posts from this blog

OSA Assignment 1 - Task 3 GUIDE

OSA Assignment 1 - Task 1 GUIDE

OSA Summer 2023 Mock - Task 1, Assignment 1