forked from intelowlproject/IntelOwl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
start.py
237 lines (221 loc) · 6.87 KB
/
start.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# This file is a part of IntelOwl https://github.com/intelowlproject/IntelOwl
# See the file 'LICENSE' for copying permission.
import argparse
import os
import re
import subprocess
try:
from dotenv import load_dotenv
from git import Repo
except ImportError:
print(
"you must install the Python requirements."
" See: https://intelowl.readthedocs.io/en/latest/Installation.html"
)
exit(2)
CURRENT_VERSION = "4.0.1"
DOCKER_ANALYZERS = [
"tor_analyzers",
"rendertron",
"malware_tools_analyzers",
"cyberchef",
"pcap_analyzers",
]
PATH_MAPPING = {
"default": "docker/default.yml",
"test": "docker/test.override.yml",
"ci": "docker/ci.override.yml",
"custom": "docker/custom.override.yml",
"traefik": "docker/traefik.override.yml",
"multi_queue": "docker/multi-queue.override.yml",
"test_multi_queue": "docker/test.multi-queue.override.yml",
"flower": "docker/flower.override.yml",
"test_flower": "docker/test.flower.override.yml",
"elastic": "docker/elasticsearch.override.yml",
}
# to fix the box-js folder name
PATH_MAPPING.update(
{
name: f"integrations/{name.replace('box_js', 'box-js')}/compose.yml"
for name in DOCKER_ANALYZERS
}
)
PATH_MAPPING.update(
{
name
+ ".test": f"integrations/{name.replace('box_js', 'box-js')}/compose-tests.yml"
for name in DOCKER_ANALYZERS
}
)
PATH_MAPPING["all_analyzers"] = [PATH_MAPPING[key] for key in DOCKER_ANALYZERS]
PATH_MAPPING["all_analyzers.test"] = [
PATH_MAPPING[key + ".test"] for key in DOCKER_ANALYZERS
]
def version_regex(arg_value, pat=re.compile(r"^[3-4]\.[0-9]{1,2}.[0-9]{1,2}$")):
if not pat.match(arg_value):
raise argparse.ArgumentTypeError
return arg_value
def start():
parser = argparse.ArgumentParser()
# mandatory arguments
parser.add_argument("mode", type=str, choices=["prod", "test", "ci"])
parser.add_argument(
"docker_command",
type=str,
choices=[
"build",
"up",
"start",
"restart",
"down",
"stop",
"kill",
"logs",
"ps",
],
)
# integrations
parser.add_argument(
"--project_name", required=False, help="project name", default="intel_owl"
)
parser.add_argument(
"--version",
required=False,
type=version_regex,
default=CURRENT_VERSION,
help="choose the version you would like to install (>=3.0.0)."
" Works only in 'prod' mode",
)
# integrations
parser.add_argument(
"--all_analyzers",
required=False,
action="store_true",
help="Uses every integration",
)
for integration in DOCKER_ANALYZERS:
parser.add_argument(
f"--{integration}",
required=False,
action="store_true",
help=f"Uses the integrations/{integration}/compose.yml file",
)
# possible upgrades
parser.add_argument(
"--multi_queue",
required=False,
action="store_true",
help="Uses the multiqueue.override.yml compose file",
)
parser.add_argument(
"--traefik",
required=False,
action="store_true",
help="Uses the traefik.override.yml compose file",
)
parser.add_argument(
"--flower",
required=False,
action="store_true",
help="Uses the flower.override.yml compose file",
)
parser.add_argument(
"--custom",
required=False,
action="store_true",
help="Uses custom.override.yml to leverage your customized configuration",
)
parser.add_argument(
"--debug-build",
required=False,
action="store_true",
help="see more verbose output from the build, for debug purposes",
)
parser.add_argument(
"--elastic",
required=False,
action="store_true",
help="This spins up Elasticsearch"
"and Kibana on your machine (might need >=16GB of RAM)",
)
args, unknown = parser.parse_known_args()
# logic
test_appendix = ""
is_test = False
if args.mode in ["test", "ci"]:
is_test = True
test_appendix = ".test"
# load relevant .env file
load_dotenv("docker/.env.start" + test_appendix)
docker_flags = [
args.__dict__[docker_analyzer] for docker_analyzer in DOCKER_ANALYZERS
]
if args.all_analyzers and any(docker_flags):
parser.error(
"It is not possible to select both "
"`all_analyzers` and another docker container"
)
return
# default file
compose_files = [PATH_MAPPING["default"]]
# mode
if is_test:
compose_files.append(PATH_MAPPING[args.mode])
if args.__dict__["elastic"]:
compose_files.append(PATH_MAPPING["elastic"])
# upgrades
for key in ["traefik", "multi_queue", "custom", "flower"]:
if args.__dict__[key]:
compose_files.append(PATH_MAPPING[key])
# additional compose files for tests
if args.mode == "test":
for key in ["multi_queue", "flower"]:
if args.__dict__[key]:
compose_files.append(PATH_MAPPING["test_" + key])
# additional integrations
for key in DOCKER_ANALYZERS:
if args.__dict__[key]:
compose_files.append(PATH_MAPPING[key])
if is_test:
compose_files.append(PATH_MAPPING[key + test_appendix])
if args.all_analyzers:
compose_files.extend(list(PATH_MAPPING["all_analyzers"]))
if is_test:
compose_files.extend(list(PATH_MAPPING[f"all_analyzers{test_appendix}"]))
if args.mode == "prod" and args.version != CURRENT_VERSION:
current_dir = os.getcwd()
repo = Repo(current_dir)
git = repo.git
git.config("--global", "--add", "safe.directory", current_dir)
git.checkout(f"tags/v{args.version}")
# construct final command
base_command = [
"docker-compose",
"-p",
args.project_name,
"--project-directory",
"docker",
]
for compose_file in compose_files:
base_command.append("-f")
base_command.append(compose_file)
# we use try/catch to mimick docker-compose's behaviour of handling CTRL+C event
try:
command = base_command + [args.docker_command] + unknown
env = os.environ.copy()
env["DOCKER_BUILDKIT"] = "1"
if args.debug_build:
env["BUILDKIT_PROGRESS"] = "plain"
subprocess.run(command, env=env)
except KeyboardInterrupt:
print(
"---- removing the containers, please wait... ",
"(press Ctrl+C again to force) ----",
)
try:
subprocess.run(base_command + ["down"])
except KeyboardInterrupt:
# just need to catch it
pass
if __name__ == "__main__":
start()