Skip to content

Commit 2f27ebe

Browse files
Implement ELA vulnid (#12510)
1 parent 33559eb commit 2f27ebe

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dojo/settings/settings.dist.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

dojo/templatetags/display_tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(":", "")

0 commit comments

Comments
 (0)