-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcve_bacon.html
30 lines (29 loc) · 884 Bytes
/
cve_bacon.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
26
27
28
29
30
---
title: CVE-Bacon
icon: newspaper-o
---
<div class="card">
<div class="card-heading">
<h3>Oneplus msm8974 Kernel</h3>
</div>
<div class="card-content-1">
<h2>Patched</h2>
{% for cve in site.data.cve %}
{% if cve.baconcommitid and cve.baconcommitid != "unaffected" and cve.baconcommitid != null %}
<b>{{ cve.cve }}</b>: <a href="https://github.com/andi34/android_kernel_oneplus_msm8974/commit/{{ cve.baconcommitid }}">{{ cve.baconcommitid }}</a></br>
{% endif %}
{% endfor %}
<h2>Unaffected</h2>
{% for cve in site.data.cve %}
{% if cve.baconcommitid == "unaffected" %}
<b>{{ cve.cve }}</b>: UNAFFECTED</br>
{% endif %}
{% endfor %}
<h2>Unpatched/need to be checked</h2>
{% for cve in site.data.cve %}
{% if cve.baconcommitid == null %}
<b>{{ cve.cve }}</b>: UNAFFECTED OR UNPATCHED</br>
{% endif %}
{% endfor %}
</div>
</div>