Skip to content

Commit 269a75f

Browse files
🎉 Add JVNDB vulnid (#12724)
1 parent 5c62799 commit 269a75f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dojo/settings/settings.dist.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1836,6 +1836,7 @@ def saml2_attrib_map_format(din):
18361836
"GLSA": "https://security.gentoo.org/", # e.g. https://security.gentoo.org/glsa/202409-32
18371837
"GO-": "https://pkg.go.dev/vuln/", # e.g. https://pkg.go.dev/vuln/GO-2025-3703
18381838
"JSDSERVER-": "https://jira.atlassian.com/browse/", # e.g. https://jira.atlassian.com/browse/JSDSERVER-14872
1839+
"JVNDB-": "https://jvndb.jvn.jp/en/contents/", # e.g. https://jvndb.jvn.jp/en/contents/2025/JVNDB-2025-004079.html
18391840
"KB": "https://support.hcl-software.com/csm?id=kb_article&sysparm_article=", # e.g. https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0108401
18401841
"KHV": "https://avd.aquasec.com/misconfig/kubernetes/", # e.g. https://avd.aquasec.com/misconfig/kubernetes/khv045
18411842
"LEN-": "https://support.lenovo.com/cl/de/product_security/", # e.g. https://support.lenovo.com/cl/de/product_security/LEN-94953

dojo/templatetags/display_tags.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -793,6 +793,8 @@ def vulnerability_url(vulnerability_id):
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(":", "")
796+
if key == "JVNDB-":
797+
return settings.VULNERABILITY_URLS[key] + str(vulnerability_id.split("-")[1]) + "/" + str(vulnerability_id) + ".html"
796798
if "&&" in settings.VULNERABILITY_URLS[key]:
797799
# Process specific keys specially if need
798800
if key in {"CAPEC", "CWE"}:

0 commit comments

Comments
 (0)