-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathlan-pan.html
40 lines (33 loc) · 1.78 KB
/
lan-pan.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
---
layout: threat-list
title: LANs and PANs
---
<p><b><a href="#wi-fi">Wi-Fi:</a></b> Wi-Fi is a wireless local area networking (WLAN) technology based on the IEEE 802.11 series of standards.</p>
<p><b><a href="#bluetooth">Bluetooth:</a></b> Bluetooth is a medium-range, lower power, wireless communication technology.</p>
<p><b><a href="#nfc">NFC:</a></b> NFC is a short range wireless communication technology that is commonly used for mobile wallet technologies and peripheral configuration, although a number of other applications exist.</p>
<h2>Threat List</h2>
<h3 id="wi-fi">Wi-Fi</h3>
<ul class="threat-list">
{% assign sorted = site.lan-pan-threats | sort:"rawID" %}
{% for lan-pan-threat in sorted %}
{% if lan-pan-threat.ThreatCategory == 'Network Threats: Wi-Fi' %}
<li><a href="{{ site.baseurl }}{{ lan-pan-threat.url }}">{{ lan-pan-threat.ID }}: {{ lan-pan-threat.Threat }} {% if lan-pan-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="bluetooth">Bluetooth</h3>
<ul class="threat-list">
{% for lan-pan-threat in sorted %}
{% if lan-pan-threat.ThreatCategory == 'Network Threats: Bluetooth' %}
<li><a href="{{ site.baseurl }}{{ lan-pan-threat.url }}">{{ lan-pan-threat.ID }}: {{ lan-pan-threat.Threat }} {% if lan-pan-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3 id="nfc">NFC</h3>
<ul class="threat-list">
{% for lan-pan-threat in sorted %}
{% if lan-pan-threat.ThreatCategory == 'Network Threats: NFC' %}
<li><a href="{{ site.baseurl }}{{ lan-pan-threat.url }}">{{ lan-pan-threat.ID }}: {{ lan-pan-threat.Threat }} {% if lan-pan-threat.removed %}(DEPRECATED){% endif %}</a></li>
{% endif %}
{% endfor %}
</ul>