File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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-" :
You can’t perform that action at this time.
0 commit comments