-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcellular.html
86 lines (71 loc) · 4.92 KB
/
cellular.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
layout: threat-list
title: Cellular
---
<p><b><a href="#air-interface">Air Interface</a>:</b> The cellular air interface is the radio connection between a handset and a base station. There are many cellular network types each with its own air interface standards which as a total set are extremely flexible and primarily communicate
with base stations. Note: A number of general threats to the cellular air interface are listed, yet when there's a threat that is specific to a particular cellular protocol (e.g., GSM, CDMA, LTE) that is explicitly listed.</p>
<p><b><a href="#consumer-grade-small-cell">Consumer grade small cell</a>:</b> Small cells are often used to extend cellular network coverage into homes, offices, and other locations lacking service.</p>
<p><b><a href="#carrier-grade-messaging">Carrier-grade Messaging Services</a>:</b> Messaging services (i.e., SMS, MMS, RCS) allow text, photos, and more to be sent from one device to another. Although third-party messaging services exist, carrier-grade messaging services are pre-installed with
nearly ubiquitous supported "out of the box" on nearly every mobile phone, and interoperable with most MNO's networks.</p>
<p><b><a href="#ussd">USSD</a>:</b> A method for establishing a real-time session with a service or application to quickly share short messages. Although USSD messages may travel over SMS, the protocol itself is distinct.</p>
<p><b><a href="#carrier-infrastructure">Carrier Infrastructure</a>:</b> This category includes threats to the base stations, backhaul and core cellular network.</p>
<p><b><a href="#carrier-interoperability">Carrier Interoperability</a>:</b> This subcategory is primarily reserved for signaling threats associated with the Signaling System No. 7 (SS7) network.</p>
<p><b><a href="#volte">VoLTE</a>:</b> The packet switched network application used for making voice calls within LTE. Although not supported in every MNO's network, large-scale rollouts are underway throughout the world.</p>
<h2>Threat List</h2>
<h3 id="air-interface">Air Interface</h3>
<ul class="threat-list">
{% assign sorted = site.cellular-threats | sort:"rawID" %}
{% for cellular-threat in sorted %}
{% if cellular-threat.ThreatCategory == 'Cellular Air Interface' %}
<li><a href="{{ site.baseurl }}{{ cellular-threat.url }}">{{ cellular-threat.ID }}: {{ cellular-threat.Threat }} {% if cellular-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="consumer-grade-small-cell">Consumer-Grade Small Cell</h3>
<ul class="threat-list">
{% for cellular-threat in sorted %}
{% if cellular-threat.ThreatCategory == 'Consumer-grade Femtocell' %}
<li><a href="{{ site.baseurl }}{{ cellular-threat.url }}">{{ cellular-threat.ID }}: {{ cellular-threat.Threat }} {% if cellular-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="carrier-grade-messaging">Carrier-grade Messaging Services</h3>
<ul class="threat-list">
{% for cellular-threat in sorted %}
{% if cellular-threat.ThreatCategory == 'SMS / MMS / RCS' %}
<li><a href="{{ site.baseurl }}{{ cellular-threat.url }}">{{ cellular-threat.ID }}: {{ cellular-threat.Threat }} {% if cellular-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="ussd">USSD</h3>
<ul class="threat-list">
{% for cellular-threat in sorted %}
{% if cellular-threat.ThreatCategory == 'USSD' %}
<li><a href="{{ site.baseurl }}{{ cellular-threat.url }}">{{ cellular-threat.ID }}: {{ cellular-threat.Threat }} {% if cellular-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="carrier-infrastructure">Carrier Infrastructure</h3>
<ul class="threat-list">
{% for cellular-threat in sorted %}
{% if cellular-threat.ThreatCategory == 'Carrier Infrastructure' %}
<li><a href="{{ site.baseurl }}{{ cellular-threat.url }}">{{ cellular-threat.ID }}: {{ cellular-threat.Threat }} {% if cellular-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="carrier-interoperability">Carrier Interoperability</h3>
<ul class="threat-list">
{% for cellular-threat in sorted %}
{% if cellular-threat.ThreatCategory == 'Carrier Interoperability' %}
<li><a href="{{ site.baseurl }}{{ cellular-threat.url }}">{{ cellular-threat.ID }}: {{ cellular-threat.Threat }} {% if cellular-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="volte">VoLTE</h3>
<ul class="threat-list">
{% for cellular-threat in sorted %}
{% if cellular-threat.ThreatCategory == 'VoLTE' %}
<li><a href="{{ site.baseurl }}{{ cellular-threat.url }}">{{ cellular-threat.ID }}: {{ cellular-threat.Threat }} {% if cellular-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>