forked from usnistgov/mobile-threat-catalogue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cve-list.html
25 lines (23 loc) · 872 Bytes
/
cve-list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: default
title: List of CVEs
---
<h1 class="page-heading" >{{page.title}}</h1>
{% assign CVEList = "" | split: "" %}
{% assign documents = site.documents | where: 'merged', true %}
{% for document in documents %}
{% for CVEExample in document.CVEExample %}
{% unless CVEList contains CVEExample %}
{% assign CVEList = CVEList | push: CVEExample %}
{% endunless %}
{% endfor %}
{% endfor %}
<p>Below is the list of CVEs currently referenced within the Mobile Threat Catalogue.</p>
<a href="mtc-cve-list.csv">Click here to download as a CSV</a>
<ul class="cve-list">
{% assign sorted = CVEList | sort %}
{% for item in sorted %}
{% assign CVESplit = item | split: ' ' %}
<li><a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name={{ CVESplit[0] }}">{{ CVESplit[0] }}</a></li>
{% endfor %}
</ul>