forked from andi34/andi34.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcve_omap4.html
41 lines (38 loc) · 1010 Bytes
/
cve_omap4.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
31
32
33
34
35
36
37
38
39
40
---
title: CVE-OMAP4
icon: newspaper-o
---
<style>
body {
word-wrap: break-word;
}
</style>
<div class="card">
<div class="card-heading">
<h3>TI OMAP4 Kernel (common 3.0.y)</h3>
</div>
<div class="card-content-1">
<h2>Patched</h2>
{% for cve in site.data.cve %}
{% if cve.omap4commitid %}
{% if cve.omap4commitid != "unaffected" %}
{% if cve.omap4commitid != null %}
<b>{{ cve.cve }}</b>: <a href="https://github.com/Unlegacy-Android/android_kernel_ti_omap4/commit/{{ cve.omap4commitid }}">{{ cve.omap4commitid }}</a></br>
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
<h2>Unaffected</h2>
{% for cve in site.data.cve %}
{% if cve.omap4commitid == "unaffected" %}
<b>{{ cve.cve }}</b>: UNAFFECTED</br>
{% endif %}
{% endfor %}
<h2>Unpatched/need to be checked</h2>
{% for cve in site.data.cve %}
{% if cve.omap4commitid == null %}
<b>{{ cve.cve }}</b>: UNAFFECTED OR UNPATCHED</br>
{% endif %}
{% endfor %}
</div>
</div>