p12Cracker
p12Cracker copied to clipboard
A simple tool to brute force a password-protected PFX/P12 file
Results
2
p12Cracker issues
Sort by
recently updated
recently updated
newest added
Switched to the APIs in cryptography.
#remove from OpenSSL import crypto from cryptography.hazmat.primitives.serialization import pkcs12 and also new code to handle exception: try: p12 = pkcs12.load_pkcs12(open(p12FilePath, 'rb').read(), guess.encode('utf8')) except ValueError as e: p12 = None