-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (33 loc) · 1.79 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>2016 DBIR Attack Graph</title>
<!-- JavaScript Libraries //-->
<script src="http://d3js.org/d3.v3.min.js"></script>
<!-- CSS Style //-->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- <button id="showPath" onclick="showPath()">Show Path</button>-->
<div id="content">
<div id="title">Data Breach Investigations Report (DBIR) 2016</div>
<div id="description">
Attack graphs provide the perfect tool to map and analyze an organization’s attack surface. Incidents are a great <a href="https://github.com/vz-risk/VERISAG/tree/v2/static" target="_blank">source of data</a> to build attack graphs as they show the attack paths attackers actually take. The 2016 DBIR Attack Graph uses the actions taken and attributes compromised in the 100,000+ incidents from 2015 to show the attack surface of the entire 2016 DBIR.
</div>
<ul id="links">
<li><a href="index.html" class="active">Attack Graph 2016</a></li>
<li><a href="all.html">All Nodes</a></li>
<li><a href="compare.html">Comparison 2015-2016</a></li>
</ul>
</div>
<div id="colophon">
Data provided by <a href="http://www.verizonenterprise.com/DBIR/" target="_blank">Verizon Enterprise Solutions</a>.
<br />Visualizations provided by <a href="http://lust.nl/" target="_blank">LUST</a> as part of the <a href="http://www.trespass-project.eu/" target="_blank">TREsPASS</a> project.
</div>
<img src="legend.svg" id="legend">
<div id="archGraph"></div>
<script src="lib/arch-arch.js"></script>
</body>
</html>