-
Notifications
You must be signed in to change notification settings - Fork 25
/
generate_code.py
executable file
·53 lines (42 loc) · 1.57 KB
/
generate_code.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
49
50
51
52
53
#!/usr/bin/env python3
"""generate_code.py
Usage:
generate_code.py [-o|--old] [-a] ANDOTP_AES_BACKUP_FILE MATCH_STRING
Options:
-o --old Use old encryption (andOTP <= 0.6.2)
-a --all Show all matches.
-h --help Show this screen.
--version Show version.
"""
from docopt import docopt
import sys
import pyotp
import json
import andotp_decrypt
def main():
arguments = docopt(__doc__, version='generate_code 0.1')
password = andotp_decrypt.get_password()
text = None
if arguments['--old']:
text = andotp_decrypt.decrypt_aes(password, arguments['ANDOTP_AES_BACKUP_FILE'])
else:
text = andotp_decrypt.decrypt_aes_new_format(password, arguments['ANDOTP_AES_BACKUP_FILE'])
if not text:
print("Something went wrong while loading %s. Maybe the passphrase was wrong"
" or the input file is empty." % arguments['ANDOTP_AES_BACKUP_FILE'])
sys.exit(1)
entries = json.loads(text)
filtered_entries = andotp_decrypt.find_entries(entries, arguments["MATCH_STRING"], None if arguments["--all"] else 1)
if len(filtered_entries) == 0:
print("No entry matching '%s' found" % arguments["MATCH_STRING"])
sys.exit(0)
for entry in filtered_entries:
if entry['type'] == 'TOTP':
totp = pyotp.TOTP(entry['secret'], interval=entry['period'])
print("Matched: %s" % andotp_decrypt.descriptor(entry))
print(totp.now())
else:
print("Unsupported OTP type: %s" % entry["type"])
sys.exit(2)
if __name__ == '__main__':
main()