Using John the Ripper with custom encryption function
I have a working script done with python to do dictionary attack on a few hashes
import hashlib
def main():
print(“Starting…”)
users = []
with open(‘users.txt’) as f:
for line in f:
spl… Continue reading Using John the Ripper with custom encryption function