File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1829,6 +1829,7 @@ def saml2_attrib_map_format(din):
18291829 "DLA-" : "https://security-tracker.debian.org/tracker/" , # e.g. https://security-tracker.debian.org/tracker/DLA-3917-1
18301830 "DSA-" : "https://security-tracker.debian.org/tracker/" , # e.g. https://security-tracker.debian.org/tracker/DSA-5791-1
18311831 "DTSA-" : "https://security-tracker.debian.org/tracker/" , # e.g. https://security-tracker.debian.org/tracker/DTSA-41-1
1832+ "ELA-" : "https://www.freexian.com/lts/extended/updates/" , # e.g. https://www.freexian.com/lts/extended/updates/ela-1387-1-erlang
18321833 "ELBA-" : "https://linux.oracle.com/errata/&&.html" , # e.g. https://linux.oracle.com/errata/ELBA-2024-7457.html
18331834 "ELSA-" : "https://linux.oracle.com/errata/&&.html" , # e.g. https://linux.oracle.com/errata/ELSA-2024-12714.html
18341835 "FEDORA-" : "https://bodhi.fedoraproject.org/updates/" , # e.g. https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2024-06aa7dc422
Original file line number Diff line number Diff line change @@ -789,7 +789,7 @@ def vulnerability_url(vulnerability_id):
789789 return settings .VULNERABILITY_URLS [key ] + str (vulnerability_id .replace ("SSA:" , "SSA-" ))
790790 if key == "SSA-" and not re .findall (r"SSA-\d{4}-" , vulnerability_id ):
791791 return "https://cert-portal.siemens.com/productcert/html/" + str (vulnerability_id .lower ()) + ".html"
792- if key in {"AVD" , "KHV" , "C-" }:
792+ if key in {"AVD" , "KHV" , "C-" , "ELA-" }:
793793 return settings .VULNERABILITY_URLS [key ] + str (vulnerability_id .lower ())
794794 if key == "SUSE-SU-" :
795795 return settings .VULNERABILITY_URLS [key ] + str (vulnerability_id .lower ().removeprefix ("suse-su-" )[:4 ]) + "/" + vulnerability_id .replace (":" , "" )
You can’t perform that action at this time.
0 commit comments