-
Notifications
You must be signed in to change notification settings - Fork 7
/
cve.html
46 lines (45 loc) · 1.85 KB
/
cve.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
41
42
43
44
45
46
---
title: CVE
icon: newspaper-o
---
{% for cve in site.data.cve %}
<div class="card">
<div class="card-heading">
<h3>{{ cve.cve }}</h3> (<a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name={{ cve.cve }}">https://cve.mitre.org/cgi-bin/cvename.cgi?name={{ cve.cve }}</a>)
</div>
<div class="card-content-1">
{% if cve.info %}
<b>Information:</b><br />
{{ cve.info | markdownify }}
{% endif %}
{% if cve.content %}
<b>Links:</b><br />
{{ cve.content | markdownify }}
{% endif %}
<b>Galaxy Tab 2 Kernel:</b>
{% if cve.espressocommitid %}
<br /><a href="https://github.com/Unlegacy-Android/android_kernel_samsung_espresso/commit/{{ cve.espressocommitid }}">https://github.com/Unlegacy-Android/android_kernel_samsung_espresso/commit/{{ cve.espressocommitid }}</a></br>
{% else %}
<b> UNAFFECTED OR UNPATCHED</b></br>
{% endif %}
<b>Galaxy Nexus Kernel:</b>
{% if cve.tunacommitid %}
<br /><a href="https://github.com/Unlegacy-Android/android_kernel_samsung_tuna/commit/{{ cve.tunacommitid }}">https://github.com/Unlegacy-Android/android_kernel_samsung_tuna/commit/{{ cve.tunacommitid }}</a></br>
{% else %}
<b> UNAFFECTED OR UNPATCHED</b></br>
{% endif %}
<b>Common OMAP4 Kernel:</b>
{% if cve.omap4commitid %}
<br /><a href="https://github.com/Unlegacy-Android/android_kernel_ti_omap4/commit/{{ cve.omap4commitid }}">https://github.com/Unlegacy-Android/android_kernel_ti_omap4/commit/{{ cve.omap4commitid }}</a></br>
{% else %}
<b> UNAFFECTED OR UNPATCHED</b></br>
{% endif %}
<b>Oneplus msm8974 Kernel:</b>
{% if cve.baconcommitid %}
<br /><a href="https://github.com/andi34/android_kernel_oneplus_msm8974/commit/{{ cve.baconcommitid }}">https://github.com/andi34/android_kernel_oneplus_msm8974/commit/{{ cve.baconcommitid }}</a></br>
{% else %}
<b>UNAFFECTED OR UNPATCHED</b></br>
{% endif %}
</div>
</div>
{% endfor %}