Skip to content

Commit f0ea0dd

Browse files
🎉 Add slackware security advisory to vulnid (DefectDojo#12113)
1 parent a4beeeb commit f0ea0dd

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

dojo/settings/settings.dist.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1841,6 +1841,8 @@ def saml2_attrib_map_format(din):
18411841
"RUSTSEC-": "https://rustsec.org/advisories/", # e.g. https://rustsec.org/advisories/RUSTSEC-2024-0432
18421842
"RXSA-": "https://errata.rockylinux.org/", # e.g. https://errata.rockylinux.org/RXSA-2024:4928
18431843
"SNYK-": "https://snyk.io/vuln/", # e.g. https://security.snyk.io/vuln/SNYK-JS-SOLANAWEB3JS-8453984
1844+
"SSA:": "https://vulners.com/slackware/", # e.g. https://vulners.com/slackware/SSA-2024-157-01
1845+
"SSA-": "https://vulners.com/slackware/", # e.g. https://vulners.com/slackware/SSA-2025-074-01
18441846
"SP-": "https://advisory.splunk.com/advisories/", # e.g. https://advisory.splunk.com/advisories/SP-CAAANR7
18451847
"SUSE-SU-": "https://www.suse.com/support/update/announcement/", # e.g. https://www.suse.com/support/update/announcement/2024/suse-su-20244196-1
18461848
"SVD-": "https://advisory.splunk.com/advisories/", # e.g. https://advisory.splunk.com/advisories/SVD-2025-0103

dojo/templatetags/display_tags.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -780,6 +780,8 @@ def vulnerability_url(vulnerability_id):
780780
if vulnerability_id.upper().startswith(key):
781781
if key == "GLSA":
782782
return settings.VULNERABILITY_URLS[key] + str(vulnerability_id.replace("GLSA-", "glsa/"))
783+
if key == "SSA:":
784+
return settings.VULNERABILITY_URLS[key] + str(vulnerability_id.replace("SSA:", "SSA-"))
783785
if key in {"AVD", "KHV", "C-"}:
784786
return settings.VULNERABILITY_URLS[key] + str(vulnerability_id.lower())
785787
if key == "SUSE-SU-":

0 commit comments

Comments
 (0)