File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1829,6 +1829,7 @@ def saml2_attrib_map_format(din):
1829
1829
"DLA-" : "https://security-tracker.debian.org/tracker/" , # e.g. https://security-tracker.debian.org/tracker/DLA-3917-1
1830
1830
"DSA-" : "https://security-tracker.debian.org/tracker/" , # e.g. https://security-tracker.debian.org/tracker/DSA-5791-1
1831
1831
"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
1832
1833
"ELBA-" : "https://linux.oracle.com/errata/&&.html" , # e.g. https://linux.oracle.com/errata/ELBA-2024-7457.html
1833
1834
"ELSA-" : "https://linux.oracle.com/errata/&&.html" , # e.g. https://linux.oracle.com/errata/ELSA-2024-12714.html
1834
1835
"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):
789
789
return settings .VULNERABILITY_URLS [key ] + str (vulnerability_id .replace ("SSA:" , "SSA-" ))
790
790
if key == "SSA-" and not re .findall (r"SSA-\d{4}-" , vulnerability_id ):
791
791
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-" }:
793
793
return settings .VULNERABILITY_URLS [key ] + str (vulnerability_id .lower ())
794
794
if key == "SUSE-SU-" :
795
795
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