-
Notifications
You must be signed in to change notification settings - Fork 1
/
extract_tppk_r.py
43 lines (38 loc) · 1.18 KB
/
extract_tppk_r.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
import argparse
import glob
from locale import getdefaultlocale
from os.path import isdir
from os.path import join as path_join
from subprocess import Popen, PIPE
from app.utils.io import print_process
CONSOLE_ENCODING = getdefaultlocale()[1]
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="extract tppk files recursively")
parser.add_argument(
"-d",
"--dir_path",
help="directory path to extract",
required=True,
)
parser.add_argument(
"-t",
"--tppk_tool_path",
help="TppkTool path",
required=True
)
args = parser.parse_args()
all_files = glob.glob(path_join(args.dir_path, "**", "*"), recursive=True)
for file in all_files:
if isdir(file):
continue
with open(file, "rb") as f:
magic_code = f.read(4)
if magic_code != b"tppk":
continue
print(f"[-] Extract {file}")
process = Popen(
f"{args.tppk_tool_path} extract -o {file}_tppk_extracted {file}",
stdout=PIPE,
stderr=PIPE,
)
print_process(process, CONSOLE_ENCODING)