Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dojo/settings/settings.dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -1584,6 +1584,7 @@ def saml2_attrib_map_format(din):
"MobSF Scorecard Scan": DEDUPE_ALGO_HASH_CODE,
"OSV Scan": DEDUPE_ALGO_HASH_CODE,
"Nosey Parker Scan": DEDUPE_ALGO_UNIQUE_ID_FROM_TOOL_OR_HASH_CODE,
# The bearer fingerprint is not unique across multiple scans, so it shouldn't be used for deduplication (https://github.com/DefectDojo/django-DefectDojo/pull/12346#issuecomment-2841561634)
"Bearer CLI": DEDUPE_ALGO_HASH_CODE,
"Wiz Scan": DEDUPE_ALGO_UNIQUE_ID_FROM_TOOL_OR_HASH_CODE,
"Deepfence Threatmapper Report": DEDUPE_ALGO_HASH_CODE,
Expand Down
1 change: 1 addition & 0 deletions dojo/tools/bearer_cli/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def get_findings(self, file, test):
sast_source_line=bearerfinding["source"]["start"],
sast_source_file_path=bearerfinding["filename"],
vuln_id_from_tool=bearerfinding["id"],
unique_id_from_tool=bearerfinding["fingerprint"],
Comment thread
valentijnscholten marked this conversation as resolved.
Comment thread
valentijnscholten marked this conversation as resolved.
)

items.append(finding)
Expand Down
Loading