Upgrading to DefectDojo Version 3.0.100 | DefectDojo Documentation

Upgrading to DefectDojo Version 3.0.100

Xygeni parser: repeated SAST/Secrets occurrences are now distinct findings

The Xygeni parser previously deduplicated away legitimate findings when the same secret value or code pattern appeared more than once in a single file, so only the first occurrence survived an import.

Xygeni reuses one uniqueHash across every occurrence of the same value in a file (it hashes the value, not the location) while giving each occurrence a distinct issueId that encodes the file path and line. The SAST and Secrets scan types deduplicate on unique_id_from_tool, which was set to uniqueHash, so occurrences after the first were treated as duplicates and hidden.

Starting in 3.0.100, for SAST and Secrets findings the parser keys unique_id_from_tool on the per-occurrence issueId (falling back to uniqueHash when issueId is absent) and keeps uniqueHash as vuln_id_from_tool. Each occurrence is now its own finding, and vuln_id_from_tool still groups occurrences of the same value. SCA findings are unchanged: there uniqueHash is unique per finding while issueId collides across packages, so uniqueHash remains the correct dedup key.

Required actions

For more information, check the Release Notes.