-
Notifications
You must be signed in to change notification settings - Fork 0
/
contrast_api.py
318 lines (269 loc) · 10.4 KB
/
contrast_api.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
import datetime
import json
import logging
import os
from json import JSONDecodeError
from typing import Any
from urllib.parse import urlparse
logger = logging.getLogger(__file__)
try:
import requests
except ImportError:
logger.fatal("requests module is not installed (see README)")
exit(1)
try:
from voluptuous import All, Length, Schema, Url
from voluptuous.error import MultipleInvalid
except ImportError:
logger.fatal("voluptuous module is not installed (see README)")
exit(1)
def load_config(file_path="config.json", file=None) -> list[dict]:
try:
if file:
config = json.load(file)
file.close()
else:
try:
with open(file_path) as config:
config = json.load(config)
except OSError as e:
logger.error("Could not load config", e)
exit(1)
except JSONDecodeError as e:
logger.error("Could not decode JSON from config", e)
exit(1)
# Validate environments in the config.json have expected keys
config_schema = Schema(
{
"environments": All(
[
{
"name": All(str, Length(1)),
"teamserverUrl": Url(),
"apiKey": All(str, Length(1)),
"authorizationHeader": All(str, Length(1)),
"orgId": All(str, Length(1)),
}
],
Length(1),
required=True,
)
},
required=True,
)
try:
config_schema(config)
except MultipleInvalid as e:
logger.error("config invalid - " + str(e))
for error in e.errors:
logger.error(f"\t{error.path[0]}: {error.msg}")
exit(1)
return config["environments"]
def load_config_from_env() -> dict[str, str]:
"""Validate configuration has been supplied by environment variables."""
config_schema = Schema(
{
"CONTRAST__API__URL": Url(), # type: ignore
"CONTRAST__API__API_KEY": All(Length(1)),
"CONTRAST__API__AUTH_HEADER": All(str, Length(1)),
}
)
environment_config = {k: os.getenv(k) for (k) in config_schema.schema.keys()}
try:
config_schema(environment_config)
except MultipleInvalid as e:
logger.error("ERROR: configuration invalid, check environment variables:")
for error in e.errors:
logger.error(f"\t{error.path[0]}: {error.msg}")
exit(1)
return environment_config # type: ignore - voluptuous has validated values are set
class ContrastTeamServer:
def __init__(
self,
teamserver_url,
api_key,
authorization_header,
org_uuid,
):
self._teamserver_url = teamserver_url
self._api_key = api_key
self._authorization_header = authorization_header
self._org_uuid = org_uuid
self._is_superadmin = False
self._connection_checked = False
self._skip_certificate_validation = False
if "INSECURE_SKIP_CERT_VALIDATION" in os.environ:
self._skip_certificate_validation = os.environ[
"INSECURE_SKIP_CERT_VALIDATION"
].lower() in ["1", "true"]
self._title_cwe_cache = {}
def request_headers(self, api_key) -> dict[str, str]:
return {
"Accept": "application/json",
"Api-Key": api_key,
"Authorization": self._authorization_header,
"Content-Type": "application/json",
}
def api_request(
self,
path: str,
method: str = "GET",
body: Any | None = None,
should_retry: bool = False,
api_key: str | None = None,
):
"""
Make a HTTP request to TeamServer.
Raises :class:`HTTPError`, if one occurred (after retrying, if `should_retry` is True).
:param path: URI for the request.
:param method: method for the Request: ``GET``, ``OPTIONS``, ``HEAD``, ``POST``, ``PUT``, ``PATCH``, or ``DELETE``.
:param body: (optional) A JSON serializable Python object to send in the body of the Request.
:param should_retry: Boolean. Enable/disable retrying when an exception occurs with the request.
:param api_key: (optional) TeamServer API key if you wish to override the class `api_key`.
:return: JSON body of the response.
"""
if not self._connection_checked and path != "profile":
self.test_connection()
logger.debug(method + " " + path)
if api_key is None:
api_key = self._api_key
response = requests.request(
method,
self._teamserver_url + path,
headers=self.request_headers(api_key),
json=body,
verify=not self._skip_certificate_validation,
)
if should_retry:
retry_count = 0
while retry_count < 2:
try:
response.raise_for_status()
return response.json()
except Exception as e:
if retry_count < 2:
retry_count += 1
response = requests.request(
method,
self._teamserver_url + path,
headers=self.request_headers(api_key),
json=body,
verify=not self._skip_certificate_validation,
)
else:
raise e
return response.json()
def paginate_through_all(
self, path, response_key, api_key, body=None, method="GET"
):
"""Helper to retrieve all pages of a paginated call."""
output = []
call = path
offset = 0
more = True
while more:
url = f"{call}&offset={offset}"
response = self.api_request(
url, method, body, should_retry=True, api_key=api_key
)
output.extend(response[response_key])
count = len(response[response_key])
offset += count
more = count > 0
return output
def list_orgs(self):
"""Superadmin API call to retrieve all organizations."""
if self._is_superadmin:
# fetch both and return only those we are allowed to access, as access could be limited for this specific user
all_orgs = self.api_request("superadmin/organizations?limit=100")[
"organizations"
]
profile_orgs = self.api_request("profile/organizations")["organizations"]
allowed_orgs_ids = list(
map(lambda org: org["organization_uuid"], profile_orgs)
)
orgs_allowed_access_to = []
for org in all_orgs:
if org["organization_uuid"] in allowed_orgs_ids:
orgs_allowed_access_to.append(org)
return orgs_allowed_access_to
else:
return self.api_request("profile/organizations")["organizations"]
def org_api_key(self, org_id) -> str | None:
"""Superadmin API call to retrieve the API key for a specific organization."""
if self._is_superadmin:
call = f"superadmin/organizations/{org_id}/apiKey"
else:
call = f"{org_id}/users/keys/apikey"
response = self.api_request(call)
if "api_key" in response:
return response["api_key"]
else:
return None
def list_org_apps(
self,
org_id,
api_key=None,
include_merged=True,
include_archived=False,
quick_filter="ALL",
) -> list[dict]:
"""Organization specific API call to list all applications."""
call = org_id + "/applications/filter?expand=license,metadata&sort=appName"
body = {"quickFilter": quick_filter}
if include_merged:
call += "&includeMerged=true"
if include_archived:
body["includeArchived"] = "true"
return self.paginate_through_all(
call, "applications", api_key, body=body, method="POST"
)
def org_traces_app(self, org_id, app_id, api_key):
"""Organization specific API call to list all traces (vulnerabilities) for an application."""
call = org_id + "/traces/" + app_id + "/filter?expand=application&limit=500"
traces = self.paginate_through_all(call, "traces", api_key=api_key)
return traces
@staticmethod
def format_time(timestamp):
"""Helper function to format timestamps from the responses."""
if not timestamp:
return ""
return datetime.datetime.utcfromtimestamp(timestamp / 1000).isoformat()
def test_connection(self):
"""Check TeamServer Connection and Credentials."""
try:
response = self.api_request("profile")
except JSONDecodeError as e:
logger.error("Profile check failed - check credentials: ", e)
return False
if "success" in response and not response["success"]:
logger.error("Profile check failed - check credentials: ", response)
return False
self._connection_checked = True
if "superadmin_role" not in response["user"] or (
"superadmin_role" in response["user"]
and response["user"]["superadmin_role"]
not in ["SUPERADMIN", "SERVER_ADMIN"]
):
logger.warn(
"Account is not superadmin or serveradmin, access will be limited to a subset of organizations"
)
self._is_superadmin = False
return True
self._is_superadmin = True
return True
def test_org_access(self, orgId=None):
"""Check we can access the specified organization."""
if not orgId:
orgId = self._org_uuid
response = self.api_request(f"{orgId}/organizations")
return response["success"]
def contrast_instance_from_json(json: dict) -> ContrastTeamServer:
url = json["teamserverUrl"]
url_parts = urlparse(url)
if url_parts.path != "/Contrast/api/ng/":
url = f"{url_parts.scheme}://{url_parts.netloc}/Contrast/api/ng/"
logger.debug(f"Base URL: {url}")
return ContrastTeamServer(
url, json["apiKey"], json["authorizationHeader"], json["orgId"]
)