-
Notifications
You must be signed in to change notification settings - Fork 40
/
application.html
28 lines (26 loc) · 1.8 KB
/
application.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
---
layout: threat-list
title: Applications
---
<p><b><a href="#vulnerable-applications">Application Vulnerabilities</a>:</b> This subcategory contains threats relating to discrete software vulnerabilities residing within mobile applications running atop the mobile operating system. Note: Some vulnerabilities may be specific to a particular mobile OS,
while others may be generally applicable.</p>
<p><b><a href="#malicious-priv-applications">Malicious or privacy-invasive application</a>:</b> This subcategory identifies mobile malware based threats, based in part off of Google's mobile classification taxonomy. There are no specific software vulnerabilities
within this subcategory, and accordingly no CVEs are cited. Additional malware categories are included within subcategory.</p>
<h2>Threat List</h2>
<h3 id="vulnerable-applications" >Application Vulnerabilities</h3>
<ul class="threat-list">
{% assign sorted = site.application-threats | sort:"rawID" %}
{% for application-threat in sorted %}
{% if application-threat.ThreatCategory == 'Vulnerable Applications' %}
<li><a href="{{ site.baseurl }}{{ application-threat.url }}">{{ application-threat.ID }}: {{ application-threat.Threat }} {% if application-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="malicious-priv-applications" >Malicious or privacy-invasive applications</h3>
<ul class="threat-list">
{% for application-threat in sorted %}
{% if application-threat.ThreatCategory == 'Malicious or privacy-invasive application' %}
<li><a href="{{ site.baseurl }}{{ application-threat.url }}">{{ application-threat.ID }}: {{ application-threat.Threat }} {% if application-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>