From 62da9677b1c6e7e08373258914f2a4e2aa516fc1 Mon Sep 17 00:00:00 2001 From: Ranabir Chakraborty Date: Fri, 27 Oct 2023 20:10:38 +0530 Subject: [PATCH] WFLY-18570 Automated-(ish) CVE status reporting --- _config.yml | 3 +++ _layouts/security.html | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/_config.yml b/_config.yml index 9a4f3571..550c72bc 100644 --- a/_config.yml +++ b/_config.yml @@ -134,4 +134,7 @@ pagination: # Without file extension # indexpage: 'index' + data: + cve_data: _data/cve_data.yml + ############################################################ diff --git a/_layouts/security.html b/_layouts/security.html index dded7e26..da604548 100644 --- a/_layouts/security.html +++ b/_layouts/security.html @@ -40,4 +40,23 @@

Other considerations

security@wildfly.org

+
+

CVE Reporting

+ {% for cve in site.data.cve_data %} +
+

CVE: {{ cve.CVE }}

+

Link: {{ cve.Link }}

+

Status: {{ cve.Status }}

+

JIRA Link: {{ cve.JIRA_Link }}

+

Fix Versions:

+
    + {% for version in cve.Fix_Versions %} +
  • {{ version }}
  • + {% endfor %} +
+

Notes:

+

{{ cve.Notes | newline_to_br }}

+
+ {% endfor %} +