Skip to content

Commit 04328f7

Browse files
manuel-sommerxansec
authored andcommitted
Implement ELA vulnid (#12510)
1 parent 4067a7b commit 04328f7

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
@@ -1824,6 +1824,7 @@ def saml2_attrib_map_format(din):
18241824
"DLA-": "https://security-tracker.debian.org/tracker/", # e.g. https://security-tracker.debian.org/tracker/DLA-3917-1
18251825
"DSA-": "https://security-tracker.debian.org/tracker/", # e.g. https://security-tracker.debian.org/tracker/DSA-5791-1
18261826
"DTSA-": "https://security-tracker.debian.org/tracker/", # e.g. https://security-tracker.debian.org/tracker/DTSA-41-1
1827+
"ELA-": "https://www.freexian.com/lts/extended/updates/", # e.g. https://www.freexian.com/lts/extended/updates/ela-1387-1-erlang
18271828
"ELBA-": "https://linux.oracle.com/errata/&&.html", # e.g. https://linux.oracle.com/errata/ELBA-2024-7457.html
18281829
"ELSA-": "https://linux.oracle.com/errata/&&.html", # e.g. https://linux.oracle.com/errata/ELSA-2024-12714.html
18291830
"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)