-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfetch_levo_vulns.py
executable file
·409 lines (380 loc) · 11.3 KB
/
fetch_levo_vulns.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#
# Copyright ©2022. Levo.ai Inc. All Rights Reserved.
# You may not copy, reproduce, distribute, publish, display, perform, modify, create derivative works, transmit,
# or in any way exploit any such software/code, nor may you distribute any part of this software/code over any network,
# including a local area network, sell or offer it for commercial purposes.
#
import json
import os
import sys
from sgqlc.endpoint.http import HTTPEndpoint
from token_utils import _refresh_get_access_token
GRAPHQL_SERVICE_URL = os.getenv("GQL_SERVICE_URL", "https://api.levo.ai/graphql")
workspace_id = os.getenv("WORKSPACE_ID", "")
org_id = os.getenv("ORG_ID", "")
auth_token = os.getenv("AUTH_TOKEN", "")
refresh_token = os.getenv("REFRESH_TOKEN", "")
def get_vulnerability_details(
run_uuid: str,
):
test_suite_runs = get_test_suite_runs(run_uuid)
vulnerabilities = []
for test_suite_run in test_suite_runs:
test_suite_run_id = test_suite_run["testSuiteRunId"]
test_case_runs = get_test_case_runs(run_uuid, test_suite_run_id)
for test_case_run in test_case_runs:
if test_case_run["status"] != "CaseFailed":
continue
test_case_run_uuid = test_case_run["testCaseRunUuid"]
test_case_attachment = get_test_case_attachment(
run_uuid, test_case_run_uuid
)
content = test_case_attachment["content"]
vuln_content = json.loads(content)
for _, assertion in vuln_content["assertions"].items():
if assertion["status"] == "failure":
vulnerability = {
"endpoint": test_suite_run["name"],
"test_case_name": test_case_run["name"],
"test_case_category": test_case_run["category"],
"risk": assertion["risk"],
"confidence": assertion["confidence"],
"evidence": assertion["evidence"],
"solution": assertion["solution"],
"reference": assertion["reference"],
"overview": vuln_content["summary"]
}
if (
"evidence" in assertion
and assertion["evidence"]
and "title" in assertion["evidence"]
):
evidence = assertion["evidence"]["title"]
vulnerability.update({"evidence": evidence})
if (
"cwe" in assertion
and assertion["cwe"]
and "code" in assertion["cwe"]
):
cwe_code = assertion["cwe"]["code"]
vulnerability.update({"cwe": cwe_code})
if (
"cwe" in assertion
and assertion["cwe"]
and "summary" in assertion["cwe"]
):
cwe_summary = assertion["cwe"]["summary"]
vulnerability.update({"summary": cwe_summary})
vulnerabilities.append(
vulnerability
)
return json.dumps(vulnerabilities)
def get_test_runs(my_runs_only: bool):
query = """
query GetTestRuns(
$myRunsOnly: Boolean,
$meta: AiLevoApitestingRunsV1GetAllRequestMetadataInput!
) {
aiLevoApitestingRunsV1ApiTestRunsServiceGetApiTestRuns(
input: {
myRunsOnly: $myRunsOnly
meta: $meta
}
) {
runs {
runId
name
description
status
startTime
durationMillis
author
targetUrl
testPlanName
runUuid
}
}
}
"""
variables = {
"myRunsOnly": my_runs_only,
"meta": {
"page": 0,
"pageSize": 20,
"sort": {"sortFields": ["lastModified"], "sortDirection": "Desc"},
},
}
response = execute_gql_query(query, variables)
runs = response["data"]["aiLevoApitestingRunsV1ApiTestRunsServiceGetApiTestRuns"][
"runs"
]
return runs
def get_test_run_details(run_uuid: str):
query = """
query GetApiTestRunDetails(
$runUuid: String
) {
aiLevoApitestingRunsV1ApiTestRunsServiceGetApiTestRunDetails(
input: {
runUuid: $runUuid
}
) {
author
runId
name
durationMillis
testPlanMetadata {
planId
planName
planLrn
}
runNumber
startTime
status
description
successfulTests
failedTests
targetUrl
failingTestSuitesData {
dataItems {
name
count
percentage
}
}
failingTestCaseCategoriesData {
dataItems {
name
count
percentage
}
}
}
}
"""
variables = {"runUuid": run_uuid}
response = execute_gql_query(query, variables)
test_run_details = response["data"][
"aiLevoApitestingRunsV1ApiTestRunsServiceGetApiTestRunDetails"
]
return test_run_details
def get_test_suite_runs(run_uuid: str):
query = """
query GetTestSuiteRuns(
$runUuid: String,
$meta: AiLevoApitestingRunsV1GetAllRequestMetadataInput!
) {
aiLevoApitestingRunsV1ApiTestRunsServiceGetTestSuiteRuns(
input: {
runUuid: $runUuid
meta: $meta
}
) {
meta {
currentPage
pageSize
totalItems
totalPages
}
testSuiteRuns {
testSuiteRunId
name
description
status
durationMillis
successfulTests
failedTests
erroredTests
}
}
}
"""
variables = {
"runUuid": run_uuid,
"meta": {
"page": 0,
"pageSize": 100,
"sort": {
"sortFields": ["failedTests", "erroredTests"],
"sortDirection": "Desc",
},
},
}
response = execute_gql_query(query, variables)
meta = response["data"]["aiLevoApitestingRunsV1ApiTestRunsServiceGetTestSuiteRuns"][
"meta"
]
data = []
data.extend(
response["data"]["aiLevoApitestingRunsV1ApiTestRunsServiceGetTestSuiteRuns"][
"testSuiteRuns"
]
)
current_page = 1
while current_page < meta["totalPages"]:
variables["meta"]["page"] = current_page
response = execute_gql_query(query, variables)
data.extend(
response["data"][
"aiLevoApitestingRunsV1ApiTestRunsServiceGetTestSuiteRuns"
]["testSuiteRuns"]
)
current_page += 1
return data
def get_test_suite_run_details(run_uuid: str, test_suite_run_id: str):
query = """
query GetTestSuiteRunDetails(
$runUuid: String,
$suiteRunId: String
) {
aiLevoApitestingRunsV1ApiTestRunsServiceGetTestSuiteRunDetails(
input: {
runUuid: $runUuid,
testSuiteRunId: $suiteRunId
}
) {
testSuiteId
testRunId
testSuiteRunId
name
description
status
startTime
durationMillis
totalTests
successfulTests
failedTests
erroredTests
failingTestCaseCategoriesData {
dataItems {
name
count
percentage
}
}
}
}
"""
variables = {
"runUuid": run_uuid,
"suiteRunId": test_suite_run_id,
"meta": {"page": 0, "pageSize": 5},
}
response = execute_gql_query(query, variables)
test_suite_run_details = response["data"][
"aiLevoApitestingRunsV1ApiTestRunsServiceGetTestSuiteRunDetails"
]
return test_suite_run_details
def get_test_case_runs(run_uuid: str, test_suite_run_id: str):
query = """
query GetApiTestCaseRuns(
$runUuid: String,
$suiteRunId: String,
$meta: AiLevoApitestingRunsV1GetAllRequestMetadataInput!
) {
aiLevoApitestingRunsV1ApiTestRunsServiceGetTestCaseRuns(
input: {
runUuid: $runUuid,
testSuiteRunId: $suiteRunId,
meta: $meta
}
) {
meta {
currentPage
pageSize
totalItems
totalPages
}
testCaseRuns {
testCaseRunId
testCaseRunUuid
name
description
status
durationMillis
category
summary
}
}
}
"""
variables = {
"runUuid": run_uuid,
"suiteRunId": test_suite_run_id,
"meta": {
"page": 0,
"pageSize": 10,
"sort": {"sortFields": ["startTime"], "sortDirection": "Asc"},
},
}
response = execute_gql_query(query, variables)
meta = response["data"]["aiLevoApitestingRunsV1ApiTestRunsServiceGetTestCaseRuns"][
"meta"
]
data = []
data.extend(
response["data"]["aiLevoApitestingRunsV1ApiTestRunsServiceGetTestCaseRuns"][
"testCaseRuns"
]
)
current_page = 1
while current_page < meta["totalPages"]:
variables["meta"]["page"] = current_page
response = execute_gql_query(query, variables)
data.extend(
response["data"]["aiLevoApitestingRunsV1ApiTestRunsServiceGetTestCaseRuns"][
"testCaseRuns"
]
)
current_page += 1
return data
def get_test_case_attachment(run_uuid: str, test_case_run_uuid: str):
query = """
query GetTestCaseAttachment(
$testCaseRunUuid: String,
$runUuid: String,
$attachmentType: AiLevoApitestingRunsV1TestCaseAttachment!
) {
aiLevoApitestingRunsV1ApiTestRunsServiceGetCaseAttachment(
input: {
runUuid: $runUuid,
testCaseRunUuid: $testCaseRunUuid,
attachmentType: $attachmentType
}
) {
content
contentType
}
}
"""
variables = {
"runUuid": run_uuid,
"testCaseRunUuid": test_case_run_uuid,
"attachmentType": "Result",
}
response = execute_gql_query(query, variables)
test_case_attachment = response["data"][
"aiLevoApitestingRunsV1ApiTestRunsServiceGetCaseAttachment"
]
return test_case_attachment
def execute_gql_query(query, variables):
headers = {"Authorization": "Bearer " + auth_token}
# Set workspace id header if it's present.
if workspace_id:
headers["x-levo-workspace-id"] = workspace_id
if org_id:
headers["x-levo-organization-id"] = org_id
endpoint = HTTPEndpoint(GRAPHQL_SERVICE_URL, headers)
try:
response = endpoint(query, variables)
if "errors" in response:
raise Exception(f"GQL query has failed. Response: {response}")
return response
except Exception as e:
raise Exception(f"Could not run the GQL query. Error: {e}")
if __name__ == "__main__":
test_run_uuid = sys.argv[1]
if (not auth_token or auth_token == "") and refresh_token:
auth_token = _refresh_get_access_token(refresh_token)
test_run_vulnerabilities = get_vulnerability_details(test_run_uuid)
print(test_run_vulnerabilities)