-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathFindingResource.java
418 lines (399 loc) · 23.2 KB
/
FindingResource.java
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
410
411
412
413
414
415
416
417
418
/*
* This file is part of Dependency-Track.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
* Copyright (c) OWASP Foundation. All Rights Reserved.
*/
package org.dependencytrack.resources.v1;
import alpine.common.logging.Logger;
import alpine.event.framework.Event;
import alpine.model.About;
import alpine.persistence.PaginatedResult;
import alpine.server.auth.PermissionRequired;
import io.pebbletemplates.pebble.PebbleEngine;
import io.pebbletemplates.pebble.template.PebbleTemplate;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.headers.Header;
import io.swagger.v3.oas.annotations.media.ArraySchema;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
import io.swagger.v3.oas.annotations.security.SecurityRequirements;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.apache.commons.text.WordUtils;
import org.dependencytrack.auth.Permissions;
import org.dependencytrack.event.PortfolioRepositoryMetaAnalysisEvent;
import org.dependencytrack.event.PortfolioVulnerabilityAnalysisEvent;
import org.dependencytrack.event.ProjectRepositoryMetaAnalysisEvent;
import org.dependencytrack.event.ProjectVulnerabilityAnalysisEvent;
import org.dependencytrack.integrations.FindingPackagingFormat;
import org.dependencytrack.model.Finding;
import org.dependencytrack.model.Project;
import org.dependencytrack.model.Vulnerability;
import org.dependencytrack.model.validation.ValidUuid;
import org.dependencytrack.persistence.QueryManager;
import org.dependencytrack.resources.v1.problems.ProblemDetails;
import org.dependencytrack.resources.v1.vo.BomUploadResponse;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.HeaderParam;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.QueryParam;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
import java.io.IOException;
import java.io.StringWriter;
import java.io.Writer;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.stream.Collectors;
/**
* JAX-RS resources for processing findings.
*
* @author Steve Springett
* @since 3.1.0
*/
@Path("/v1/finding")
@Tag(name = "finding")
@SecurityRequirements({
@SecurityRequirement(name = "ApiKeyAuth"),
@SecurityRequirement(name = "BearerAuth")
})
public class FindingResource extends AbstractApiResource {
private static final Logger LOGGER = Logger.getLogger(FindingResource.class);
public static final String MEDIA_TYPE_SARIF_JSON = "application/sarif+json";
@GET
@Path("/project/{uuid}")
@Produces({MediaType.APPLICATION_JSON, MEDIA_TYPE_SARIF_JSON})
@Operation(
summary = "Returns a list of all findings for a specific project or generates SARIF file if Accept: application/sarif+json header is provided",
description = "<p>Requires permission <strong>VIEW_VULNERABILITY</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "A list of all findings for a specific project, or a SARIF file",
headers = @Header(name = TOTAL_COUNT_HEADER, description = "The total number of findings", schema = @Schema(format = "integer")),
content = {
@Content(array = @ArraySchema(schema = @Schema(implementation = Finding.class)), mediaType = MediaType.APPLICATION_JSON),
@Content(schema = @Schema(type = "string"), mediaType = MEDIA_TYPE_SARIF_JSON)
}
),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(
responseCode = "403",
description = "Access to the requested project is forbidden",
content = @Content(schema = @Schema(implementation = ProblemDetails.class), mediaType = ProblemDetails.MEDIA_TYPE_JSON)),
@ApiResponse(responseCode = "404", description = "The project could not be found")
})
@PermissionRequired(Permissions.Constants.VIEW_VULNERABILITY)
public Response getFindingsByProject(@Parameter(description = "The UUID of the project", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("uuid") @ValidUuid String uuid,
@Parameter(description = "Optionally includes suppressed findings")
@QueryParam("suppressed") boolean suppressed,
@Parameter(description = "Optionally limit findings to specific sources of vulnerability intelligence")
@QueryParam("source") Vulnerability.Source source,
@HeaderParam("accept") String acceptHeader) {
try (QueryManager qm = new QueryManager(getAlpineRequest())) {
final Project project = qm.getObjectByUuid(Project.class, uuid);
if (project != null) {
requireAccess(qm, project);
final List<Finding> findings = qm.getFindings(project, suppressed);
if (acceptHeader != null && acceptHeader.contains(MEDIA_TYPE_SARIF_JSON)) {
try {
return Response.ok(generateSARIF(findings), MEDIA_TYPE_SARIF_JSON)
.header("content-disposition", "attachment; filename=\"findings-" + uuid + ".sarif\"")
.build();
} catch (IOException ioException) {
LOGGER.error(ioException.getMessage(), ioException);
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity("An error occurred while generating SARIF file").build();
}
}
if (source != null) {
final List<Finding> filteredList = findings.stream().filter(finding -> source.name().equals(finding.getVulnerability().get("source"))).collect(Collectors.toList());
return Response.ok(filteredList).header(TOTAL_COUNT_HEADER, filteredList.size()).build();
} else {
return Response.ok(findings).header(TOTAL_COUNT_HEADER, findings.size()).build();
}
} else {
return Response.status(Response.Status.NOT_FOUND).entity("The project could not be found.").build();
}
}
}
@GET
@Path("/project/{uuid}/export")
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Returns the findings for the specified project as FPF",
description = "<p>Requires permission <strong>VIEW_VULNERABILITY</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "The findings for the specified project as FPF",
content = @Content(schema = @Schema(type = "string"))
),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(
responseCode = "403",
description = "Access to the requested project is forbidden",
content = @Content(schema = @Schema(implementation = ProblemDetails.class), mediaType = ProblemDetails.MEDIA_TYPE_JSON)),
@ApiResponse(responseCode = "404", description = "The project could not be found")
})
@PermissionRequired(Permissions.Constants.VIEW_VULNERABILITY)
public Response exportFindingsByProject(@Parameter(description = "The UUID of the project", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("uuid") @ValidUuid String uuid) {
try (QueryManager qm = new QueryManager(getAlpineRequest())) {
final Project project = qm.getObjectByUuid(Project.class, uuid);
if (project != null) {
requireAccess(qm, project);
final List<Finding> findings = qm.getFindings(project);
final FindingPackagingFormat fpf = new FindingPackagingFormat(UUID.fromString(uuid), findings);
final Response.ResponseBuilder rb = Response.ok(fpf.getDocument().toString(), "application/json");
rb.header("Content-Disposition", "inline; filename=findings-" + uuid + ".fpf");
return rb.build();
} else {
return Response.status(Response.Status.NOT_FOUND).entity("The project could not be found.").build();
}
}
}
@POST
@Path("/portfolio/analyze")
@Operation(
summary = "Triggers Vulnerability Analysis for the entire portfolio",
description = "<p>Requires permission <strong>SYSTEM_CONFIGURATION</strong> or <strong>SYSTEM_CONFIGURATION_CREATE</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "Analysis triggered successfully"),
@ApiResponse(responseCode = "304", description = "Analysis is already in progress"),
@ApiResponse(responseCode = "401", description = "Unauthorized")
})
@PermissionRequired({Permissions.Constants.SYSTEM_CONFIGURATION, Permissions.Constants.SYSTEM_CONFIGURATION_CREATE}) // Require admin privileges due to system impact
public Response analyzePortfolio() {
LOGGER.info("Portfolio analysis requested by " + super.getPrincipal().getName());
if (Event.isEventBeingProcessed(PortfolioRepositoryMetaAnalysisEvent.CHAIN_IDENTIFIER)) {
LOGGER.info("Another portfolio analysis event is already being processed; Dropping");
return Response.status(Response.Status.NOT_MODIFIED).build();
}
Event.dispatch(new PortfolioVulnerabilityAnalysisEvent());
return Response.ok().build();
}
@POST
@Path("/project/{uuid}/analyze")
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Triggers Vulnerability Analysis on a specific project",
description = "<p>Requires permission <strong>VIEW_VULNERABILITY</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "Token to be used for checking analysis progress",
content = @Content(schema = @Schema(implementation = BomUploadResponse.class))
),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(
responseCode = "403",
description = "Access to the requested project is forbidden",
content = @Content(schema = @Schema(implementation = ProblemDetails.class), mediaType = ProblemDetails.MEDIA_TYPE_JSON)),
@ApiResponse(responseCode = "404", description = "The project could not be found")
})
@PermissionRequired(Permissions.Constants.VIEW_VULNERABILITY)
public Response analyzeProject(
@Parameter(description = "The UUID of the project to analyze", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("uuid") @ValidUuid String uuid) {
try (QueryManager qm = new QueryManager()) {
final Project project = qm.getObjectByUuid(Project.class, uuid);
if (project != null) {
requireAccess(qm, project);
LOGGER.info("Analysis of project " + project.getUuid() + " requested by " + super.getPrincipal().getName());
final ProjectVulnerabilityAnalysisEvent vae = new ProjectVulnerabilityAnalysisEvent(project.getUuid());
qm.createReanalyzeSteps(vae.getChainIdentifier());
Event.dispatch(vae);
final ProjectRepositoryMetaAnalysisEvent projectRepositoryMetaAnalysisEvent = new ProjectRepositoryMetaAnalysisEvent(project.getUuid());
Event.dispatch(projectRepositoryMetaAnalysisEvent);
return Response.ok(Collections.singletonMap("token", vae.getChainIdentifier())).build();
} else {
return Response.status(Response.Status.NOT_FOUND).entity("The project could not be found.").build();
}
}
}
@GET
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Returns a list of all findings",
description = "<p>Requires permission <strong>VIEW_VULNERABILITY</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "A list of all findings",
headers = @Header(name = TOTAL_COUNT_HEADER, description = "The total number of findings", schema = @Schema(format = "integer")),
content = @Content(array = @ArraySchema(schema = @Schema(implementation = Finding.class)))
),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
})
@PermissionRequired(Permissions.Constants.VIEW_VULNERABILITY)
public Response getAllFindings(@Parameter(description = "Show inactive projects")
@QueryParam("showInactive") boolean showInactive,
@Parameter(description = "Show suppressed findings")
@QueryParam("showSuppressed") boolean showSuppressed,
@Parameter(description = "Filter by severity")
@QueryParam("severity") String severity,
@Parameter(description = "Filter by analysis status")
@QueryParam("analysisStatus") String analysisStatus,
@Parameter(description = "Filter by vendor response")
@QueryParam("vendorResponse") String vendorResponse,
@Parameter(description = "Filter published from this date")
@QueryParam("publishDateFrom") String publishDateFrom,
@Parameter(description = "Filter published to this date")
@QueryParam("publishDateTo") String publishDateTo,
@Parameter(description = "Filter attributed on from this date")
@QueryParam("attributedOnDateFrom") String attributedOnDateFrom,
@Parameter(description = "Filter attributed on to this date")
@QueryParam("attributedOnDateTo") String attributedOnDateTo,
@Parameter(description = "Filter the text input in these fields")
@QueryParam("textSearchField") String textSearchField,
@Parameter(description = "Filter by this text input")
@QueryParam("textSearchInput") String textSearchInput,
@Parameter(description = "Filter CVSSv2 from this value")
@QueryParam("cvssv2From") String cvssv2From,
@Parameter(description = "Filter CVSSv2 from this Value")
@QueryParam("cvssv2To") String cvssv2To,
@Parameter(description = "Filter CVSSv3 from this value")
@QueryParam("cvssv3From") String cvssv3From,
@Parameter(description = "Filter CVSSv3 from this Value")
@QueryParam("cvssv3To") String cvssv3To) {
try (QueryManager qm = new QueryManager(getAlpineRequest())) {
final Map<String, String> filters = new HashMap<>();
filters.put("severity", severity);
filters.put("analysisStatus", analysisStatus);
filters.put("vendorResponse", vendorResponse);
filters.put("publishDateFrom", publishDateFrom);
filters.put("publishDateTo", publishDateTo);
filters.put("attributedOnDateFrom", attributedOnDateFrom);
filters.put("attributedOnDateTo", attributedOnDateTo);
filters.put("textSearchField", textSearchField);
filters.put("textSearchInput", textSearchInput);
filters.put("cvssv2From", cvssv2From);
filters.put("cvssv2To", cvssv2To);
filters.put("cvssv3From", cvssv3From);
filters.put("cvssv3To", cvssv3To);
final PaginatedResult result = qm.getAllFindings(filters, showSuppressed, showInactive);
return Response.ok(result.getObjects()).header(TOTAL_COUNT_HEADER, result.getTotal()).build();
}
}
@GET
@Path("/grouped")
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Returns a list of all findings grouped by vulnerability",
description = "<p>Requires permission <strong>VIEW_VULNERABILITY</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "A list of all findings grouped by vulnerability",
headers = @Header(name = TOTAL_COUNT_HEADER, description = "The total number of findings", schema = @Schema(format = "integer")),
content = @Content(array = @ArraySchema(schema = @Schema(implementation = Finding.class)))
),
@ApiResponse(responseCode = "401", description = "Unauthorized")
})
@PermissionRequired(Permissions.Constants.VIEW_VULNERABILITY)
public Response getAllFindings(@Parameter(description = "Show inactive projects")
@QueryParam("showInactive") boolean showInactive,
@Parameter(description = "Filter by severity")
@QueryParam("severity") String severity,
@Parameter(description = "Filter published from this date")
@QueryParam("publishDateFrom") String publishDateFrom,
@Parameter(description = "Filter published to this date")
@QueryParam("publishDateTo") String publishDateTo,
@Parameter(description = "Filter the text input in these fields")
@QueryParam("textSearchField") String textSearchField,
@Parameter(description = "Filter by this text input")
@QueryParam("textSearchInput") String textSearchInput,
@Parameter(description = "Filter CVSSv2 from this value")
@QueryParam("cvssv2From") String cvssv2From,
@Parameter(description = "Filter CVSSv2 to this value")
@QueryParam("cvssv2To") String cvssv2To,
@Parameter(description = "Filter CVSSv3 from this value")
@QueryParam("cvssv3From") String cvssv3From,
@Parameter(description = "Filter CVSSv3 to this value")
@QueryParam("cvssv3To") String cvssv3To,
@Parameter(description = "Filter occurrences in projects from this value")
@QueryParam("occurrencesFrom") String occurrencesFrom,
@Parameter(description = "Filter occurrences in projects to this value")
@QueryParam("occurrencesTo") String occurrencesTo) {
try (QueryManager qm = new QueryManager(getAlpineRequest())) {
final Map<String, String> filters = new HashMap<>();
filters.put("severity", severity);
filters.put("publishDateFrom", publishDateFrom);
filters.put("publishDateTo", publishDateTo);
filters.put("textSearchField", textSearchField);
filters.put("textSearchInput", textSearchInput);
filters.put("cvssv2From", cvssv2From);
filters.put("cvssv2To", cvssv2To);
filters.put("cvssv3From", cvssv3From);
filters.put("cvssv3To", cvssv3To);
filters.put("occurrencesFrom", occurrencesFrom);
filters.put("occurrencesTo", occurrencesTo);
final PaginatedResult result = qm.getAllFindingsGroupedByVulnerability(filters, showInactive);
return Response.ok(result.getObjects()).header(TOTAL_COUNT_HEADER, result.getTotal()).build();
}
}
private String generateSARIF(List<Finding> findings) throws IOException {
final PebbleEngine engine = new PebbleEngine.Builder()
.newLineTrimming(false)
.defaultEscapingStrategy("json")
.build();
final PebbleTemplate sarifTemplate = engine.getTemplate("templates/findings/sarif.peb");
final Map<String, Object> context = new HashMap<>();
final About about = new About();
// Using "vulnId" as key, forming a list of unique vulnerabilities across all findings
// Also converts cweName to PascalCase, since it will be used as rule.name in the SARIF file
List<Map<String, Object>> uniqueVulnerabilities = findings.stream()
.collect(Collectors.toMap(
finding -> finding.getVulnerability().get("vulnId"),
FindingResource::convertCweNameToPascalCase,
(existingVuln, replacementVuln) -> existingVuln))
.values()
.stream()
.toList();
context.put("findings", findings);
context.put("dependencyTrackVersion", about.getVersion());
context.put("uniqueVulnerabilities", uniqueVulnerabilities);
try (final Writer writer = new StringWriter()) {
sarifTemplate.evaluate(writer, context);
return writer.toString();
}
}
private static Map<String, Object> convertCweNameToPascalCase(Finding finding) {
final Object cweName = finding.getVulnerability()
.get("cweName");
if (cweName != null) {
final String pascalCasedCweName = WordUtils.capitalizeFully(cweName.toString()).replaceAll("\\s", "");
finding.getVulnerability().put("cweName", pascalCasedCweName);
}
return finding.getVulnerability();
}
}