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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#!/usr/bin/env python3
import argparse
import binascii
import hashlib
import os
import struct
def create_header(key, version, iv, random, size):
header = struct.pack('32s32s32s32s32s', key, version, iv, random, size)
return header
def create_output(args):
in_st = os.stat(args.input_file)
in_size = in_st.st_size
key = "".encode('ascii')
version = args.version.encode('ascii')
iv = "".encode('ascii')
random = "".encode('ascii')
size = str(in_size).encode('ascii')
header = create_header(key, version, iv, random, size)
out_f = open(args.output_file, 'w+b')
out_f.write(header)
out_f.close()
md5 = hashlib.md5()
md5.update(header[0x60:0x80])
md5.update(header[0x20:0x40])
md5_1 = md5.digest()
md5 = hashlib.md5()
md5.update(header[0x80:0xA0])
md5.update(header[0x20:0x40])
md5_2 = md5.digest()
key = md5_1 + md5_2
key_f = open(args.key_file, 'w+b')
key_f.write(binascii.hexlify(bytearray(key)))
key_f.close()
print("AES 256 CBC Key:", binascii.hexlify(bytearray(key)))
def main():
global args
parser = argparse.ArgumentParser(description='')
parser.add_argument('--input-file',
dest='input_file',
action='store',
type=str,
help='Input file')
parser.add_argument('--key-file',
dest='key_file',
action='store',
type=str,
help='AES 256 CBC Key File')
parser.add_argument('--output-file',
dest='output_file',
action='store',
type=str,
help='Output file')
parser.add_argument('--version',
dest='version',
action='store',
type=str,
help='Version')
args = parser.parse_args()
if ((not args.input_file) or
(not args.key_file) or
(not args.output_file) or
(not args.version)):
parser.print_help()
create_output(args)
main()
|