forked from Vu1nT0tal/Vehicle-Security-Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsrc_qark.py
executable file
·54 lines (39 loc) · 1.65 KB
/
src_qark.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
54
#!/usr/bin/python3
import sys
import pyfiglet
import argparse
from pathlib import Path
sys.path.append('..')
from utils import *
def analysis(src_path: Path, tools_path: Path, report_type: str=None):
report_type = 'html' if report_type is None else report_type
report_file = src_path.joinpath(f'report.{report_type}')
new_report_file = src_path.joinpath(f'SecScan/qark.{report_type}')
scanner = tools_path.joinpath('qark-env/bin/qark')
cmd = f'{scanner} --java {src_path} --report-type {report_type} --report-path {src_path}'
output, ret_code = shell_cmd(cmd)
if report_file.exists():
report_file.rename(new_report_file)
else:
with open(f'{new_report_file}.error', 'w+') as f:
f.write(output)
return ret_code
def argument():
parser = argparse.ArgumentParser()
parser.add_argument('--config', help='A config file containing source code path', type=str, required=True)
parser.add_argument('--report', help='Type of report to generate [html|xml|json|csv]', type=str, required=False)
return parser.parse_args()
if __name__ == '__main__':
print(pyfiglet.figlet_format('src_qark'))
tools_path = Path(__file__).absolute().parents[1].joinpath('tools')
args = argument()
src_dirs = open(args.config, 'r').read().splitlines()
for src in src_dirs:
print_focus(f'[qark] {src}')
src_path = Path(src)
report_path = src_path.joinpath('SecScan')
report_path.mkdir(parents=True, exist_ok=True)
if ret := analysis(src_path, tools_path, args.report):
print_failed('[qark] failed')
else:
print_success('[qark] success')