Skip to content

Commit

Permalink
🐛 fix aqua issue DefectDojo#10586
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-sommer committed Jul 19, 2024
1 parent 2a0e29e commit 39dbf0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dojo/tools/aqua/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_items(self, tree, test):

for vuln in vulnerabilities:
item = get_item(resource, vuln, test)
unique_key = resource.get("cpe") + vuln.get("name", "None")
unique_key = resource.get("cpe") + vuln.get("name", "None") + resource.get("path", "None")
items[unique_key] = item
elif "cves" in tree:
for cve in tree["cves"]:
Expand Down

0 comments on commit 39dbf0f

Please sign in to comment.