forked from fportantier/vulpy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscrypt-crack.py
executable file
·49 lines (37 loc) · 1.02 KB
/
scrypt-crack.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
import sys
import os
import binascii
from binascii import unhexlify
import click
from cryptography.hazmat.primitives.kdf.scrypt import Scrypt
from cryptography.hazmat.backends import default_backend
from cryptography.exceptions import InvalidKey
@click.command()
@click.argument('key')
@click.argument('salt')
def crack_scrypt(key, salt):
try:
salt = unhexlify(sys.argv[1].encode())
key = unhexlify(sys.argv[2].encode())
except binascii.Error:
print('Non-hexadecimal data on salt and/or key', file=sys.stderr)
return False
backend = default_backend()
for number in range(10000):
kdf = Scrypt(
salt=salt,
length=32,
n=2**14,
r=8,
p=1,
backend=backend
)
try:
kdf.verify(str(number).encode(), key)
print('Cracked! Password:', number)
break
except InvalidKey:
pass
if __name__ == '__main__':
crack_scrypt()