24 lines
874 B
JSON
24 lines
874 B
JSON
{
|
|
"version": "https://jsonfeed.org/version/1.1",
|
|
"title": "Auto-refreshing Official CVE Feed",
|
|
"home_page_url": "https://kubernetes.io",
|
|
"feed_url": "https://kubernetes.io/docs/reference/issues-security/official-cve-feed/index.json",
|
|
"description": "Auto-refreshing official CVE feed for Kubernetes repository",
|
|
"authors": [
|
|
{
|
|
"name": "Kubernetes Community",
|
|
"url": "https://www.kubernetes.dev"
|
|
}
|
|
],
|
|
"items": [
|
|
{{ range $i, $e := getJSON .Site.Params.cveFeedBucket }}
|
|
{{ if $i }}, {{ end }}
|
|
{
|
|
{{ T "cve_json_id" | jsonify }}: {{ .cve_id | jsonify }},
|
|
{{ T "cve_json_url" | jsonify }}: {{ .issue_url | jsonify }},
|
|
{{ T "cve_json_external_url" | jsonify }}: {{ .cve_url | jsonify}},
|
|
{{ T "cve_json_summary" | jsonify }}: {{ replace (.summary | jsonify ) "\\u003e" ">" }}
|
|
}{{ end }}
|
|
]
|
|
}
|