You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`close_old_findings`| if `true`, findings that are not duplicates and that were in the previous scan of the same type (example ZAP) for the same **engagement** (or product in case of `close_old_findings_product_scope`) and that are not present in the new scan are closed (`Inactive`, `Verified`, `Mitigated`). | if `true`, findings that that are in the same **test** and that are not present in the new scan are closed (`Inactive`, `Verified`, `Mitigated`) |
392
+
|`close_old_findings_product_scope`| if true, `close_old_findings` applies to all findings of the same type in the whole **product**. Note that "Deduplication on engagement" is no longer used to determine the scope of `close_old_findings`| has no effect |
393
+
394
+
The `close_old_findings` feature will respect the value of the `service` field to only close findings with an identical `service` value.
Copy file name to clipboardExpand all lines: dojo/forms.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -651,7 +651,7 @@ class ReImportScanForm(forms.Form):
651
651
label="Choose report file",
652
652
allow_empty_file=True,
653
653
required=False)
654
-
close_old_findings=forms.BooleanField(help_text="Select if old findings no longer present in the report get closed as mitigated when importing.",
654
+
close_old_findings=forms.BooleanField(help_text="Select if old findings in the same test that areno longer present in the report get closed as mitigated when importing.",
655
655
required=False, initial=True)
656
656
version=forms.CharField(max_length=100, required=False, help_text="Version that will be set on existing Test object. Leave empty to leave existing value in place.")
657
657
branch_tag=forms.CharField(max_length=100, required=False, help_text="Branch or Tag that was scanned.")
0 commit comments