The importers analyze each report and create new Findings for each item reported. DefectDojo collapses duplicate Findings by capturing the individual hosts vulnerable.
This approach will create a new Test for each upload. This can result in a lot of findings. If deduplication is enabled, new Findings that are identical to existing Findings get marked as a duplicate.
Additionally, DefectDojo allows for re-imports of previously uploaded reports. This greatly reduces the amount of findings as no duplicates are created for findings that already exist.
DefectDojo will attempt to capture the deltas between the original and new import and automatically add or mitigate findings as appropriate.
This behaviour can be controled via the closed_old_findings
parameter on the reupload form.
The history of a test will be shown with the delta’s for each reimported scan report.
Clicking on a reimport changset will show the affected findings, as well as a status history per finding.
Some scanners might not include triage information in their reports (e.g. tfsec). They simply scan code or dependencies, flag issues, and return everything. Removing some findings requires you to add comments in your code perhaps, but there is no simple way to filter out findings from the reports.
That is why DefectDojo also includes a “Do not reactivate” checkbox in uploading reports (also in the reimport API), so you can persist the triages that have been done in Defectdojo without reactivating Findings on every upload.
For context, see #6892
This section focuses on Import and Reimport via the API. Please see the full documentation details of all API Endpoints for more details. Reimport is actually the easiest way to get started as it will create any entities on the fly if needed and it will automatically detect if it is a first time upload or a re-upload.
Importing via the API is performed via the import-scan endpoint.
As described in the Core Data Classes, a test gets created inside an Engagement, inside a Product, inside a Product Type.
An import can be performed by specifying the names of these entities in the API request:
{
"minimum_severity": 'Info',
"active": True,
"verified": True,
"scan_type": 'ZAP Scan',
"test_title": 'Manual ZAP Scan by John',
"product_type_name": 'Good Products',
"product_name": 'My little product',
"engagement_name": 'Important import',
"auto_create_context": True,
}
When auto_create_context
is True
, the product, engagement, and environment will be created if needed. Make sure your user has sufficient permissions to do this.
A classic way of importing a scan is by specifying the ID of the engagement instead:
{
"minimum_severity": 'Info',
"active": True,
"verified": True,
"scan_type": 'ZAP Scan',
"test_title": 'Manual ZAP Scan by John',
"engagement": 123,
}
ReImporting via the API is performed via the reimport-scan endpoint.
A reimport can be performed by specifying the names of these entities in the API request:
{
"minimum_severity": 'Info',
"active": True,
"verified": True,
"scan_type": 'ZAP Scan',
"test_title": 'Manual ZAP Scan by John',
"product_type_name": 'Good Products',
"product_name": 'My little product',
"engagement_name": 'Important import',
"auto_create_context": True,
"do_not_reactivate": False,
}
When auto_create_context
is True
, the product and engagement will be created if needed. Make sure your user has sufficient permissions to do this.
When do_not_reactivate
is True
, the importing/reimporting will ignore uploaded active findings and not reactivate previously closed findings, while still creating new findings if there are new ones. You will get a note on the finding to explain that it was not reactivated for that reason.
A reimport will automatically select the latest test inside the provided engagement that satisifes the provided scan_type
and (optionally) provided test_title
.
If no existing Test is found, the reimport endpoint will use the import function to import the provided report into a new Test. This means a (CI/CD) script using the API doesn’t need to know if a Test already exists, or if it is a first time upload for this Product / Engagement.
A classic way of reimporting a scan is by specifying the ID of the test instead:
{
"minimum_severity": 'Info',
"active": True,
"verified": True,
"scan_type": 'ZAP Scan',
"test": 123,
}
scan_date
) fieldDefectDojo offers a plethora of supported scanner reports, but not all of them contain the
information most important to a user. The scan_date
field is a flexible smart feature that
allows users to set the completion date of the a given scan report, and have it propagate
down to all the findings imported. This field is not mandatory, but the default value for
this field is the date of import (whenever the request is processed and a successful response is returned).
Here are the following use cases for using this field:
scan_date
is not set at importscan_date
scan_date
is not set at importscan_date
is set at importscan_date
scan_date
is set at importscan_date