This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import time | |
| from itertools import product | |
| from string import ascii_lowercase | |
| def brute_force(assumption): | |
| result = subprocess.run(['passw0rd', | |
| '--cfg', | |
| 'passw0rd.yml', |
NewerOlder