-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextract_narc_r.py
44 lines (38 loc) · 1.18 KB
/
extract_narc_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 narc files recursively")
parser.add_argument(
"-d",
"--dir_path",
help="directory path to extract",
required=True,
)
parser.add_argument(
"-n",
"--narchive_path",
help="narchive 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"NARC":
continue
print(f"[-] Extract {file}")
process = Popen(
f"{args.narchive_path} extract -o {file}_narc_extracted {file}",
stdout=PIPE,
stderr=PIPE,
)
print_process(process, CONSOLE_ENCODING)