Python dictionary attack for user input passwor, then, salting the password with user given number then again performing dictionary attack and calculating time
Check the slides “OS Security II,” pg. 4-8. You are to implement a Dictionary Attack with and without Password Salt program in Python. If you are not familiar with measuring execution time in Python, see the following website: https://stackoverflow.com/questions/1557571/how-do-i-get-time-of-a-python-programs-execution See the following steps. 1. Accept a user password of length N as keyboard input […]

