-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSecurityVisualization.html
209 lines (193 loc) · 9.59 KB
/
SecurityVisualization.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<title>Security Virtualization</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap theme -->
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="theme.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body role="document">
<!-- Fixed navbar -->
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Security Central</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="SecurityCentral.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container theme-showcase" role="main">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>Security Visualization</h1>
<p>The following group of graphs plot variety of security relevant charts. They source security data from tcpdump/wireshark, ps, snort and firewall logs.</p>
<p><a href="#" class="btn btn-primary btn-lg" role="button">Learn more on interpreting charts »</a></p>
</div>
<div class="page-header">
<h1>Security Visualization Charts</h1>
</div>
<div class="row">
<div class="col-sm-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">No. of packets per protocol type</h3>
</div>
<div class="panel-body">
<b>Chart Type: Bar</b><br>
<b>Source:</b> tcpdump<br>
<b>X-axis:</b> Source IP address<br>
<b>Y-axis:</b> Number of packets per protocol type<br>
<p>This chart plots number of packets of various protocols such as TCP, UDP and ICMP from different source hosts. <a href="http://localhost:8000/Highcharts-3.0.10/examples/bar-basic/index-csv-dynamic.htm">Plot</a></p>
</div>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">No. of blocked connections per day</h3>
</div>
<div class="panel-body">
<b>Chart Type: Spline</b><br>
<b>Source:</b> firewall log<br>
<b>X-axis:</b> Day of the week<br>
<b>Y-axis:</b> Count of blocked connections<br>
<p>This chart plots count of blocked connections at firewall on each day of the week. Data collected from firewall logs. <a href="http://localhost:8000/Highcharts-3.0.10/examples/spline-basic/index-spline-json-dynamic.htm">Plot</a></p>
</div>
</div>
</div><!-- /.col-sm-4 -->
<div class="col-sm-4">
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Port activity at various times of the day</h3>
</div>
<div class="panel-body">
<b>Chart Type: Scatter</b><br>
<b>Source:</b> tcpdump<br>
<b>X-axis:</b> Time of day<br>
<b>Y-axis:</b> Destination port<br>
<p>This chart plots the count of packets comming to each destination port at different times of the day. <a href="http://localhost:8000/Highcharts-3.0.10/examples/scatter/index-scatter-json-dynamic.htm">Plot</a></p>
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Processes activity in the system</h3>
</div>
<div class="panel-body">
<b>Chart Type: Column</b><br>
<b>Source:</b> ps<br>
<b>X-axis:</b> Process<br>
<b>Y-axis:</b> %CPU usage<br>
<p>This chart plots the percentage of CPU time used per process (top 10) running on the system. Collected using 'ps'. <a href="http://localhost:8000/Highcharts-3.0.10/examples/column-basic/index.htm">Plot</a></p>
</div>
</div>
</div><!-- /.col-sm-4 -->
<div class="col-sm-4">
<div class="panel panel-warning">
<div class="panel-heading">
<h3 class="panel-title">No. of blocked connections per day</h3>
</div>
<div class="panel-body">
<b>Chart Type: Area Spline</b><br>
<b>Source:</b> firewall log<br>
<b>X-axis:</b> Day of the week<br>
<b>Y-axis:</b> Count of blocked connections<br>
<p>This chart plots count of blocked connections at firewall on each day of the week. Data collected from firewall logs. <a href="http://localhost:8000/Highcharts-3.0.10/examples/areaspline/index-areaspline-json-dynamic.htm">Plot</a></p>
</div>
</div>
<div class="panel panel-danger">
<div class="panel-heading">
<h3 class="panel-title">No. of blocked connections per day</h3>
</div>
<div class="panel-body">
<b>Chart Type: Line</b><br>
<b>Source:</b> firewall log<br>
<b>X-axis:</b> Day of the week<br>
<b>Y-axis:</b> Count of blocked connections<br>
<p>This chart plots count of blocked connections at firewall on each day of the week. Data collected from firewall logs. <a href="http://localhost:8000/Highcharts-3.0.10/examples/line-basic/index-line-json-dynamic.htm">Plot</a></p>
</div>
</div>
</div><!-- /.col-sm-4 -->
</div>
<div class="col-sm-4">
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Proportion of application protocols</h3>
</div>
<div class="panel-body">
<b>Chart Type: Pie</b><br>
<b>Source:</b> system log<br>
<b>X-axis:</b> N/A<br>
<b>Y-axis:</b> N/A<br>
<p>This chart plots the proportion of application protocols. Data is collected based on system log activity. <a href="http://localhost:8000/Highcharts-3.0.10/examples/pie-basic/index-pie.htm">Plot</a></p>
</div>
</div>
</div><!-- /.col-sm-4 -->
<div class="col-sm-4">
<div class="panel panel-warning">
<div class="panel-heading">
<h3 class="panel-title">To be implemented</h3>
</div>
<div class="panel-body">
<b>Chart Type: Bubble</b><br>
<b>Source:</b> Some data<br>
<b>X-axis:</b> xAxis data<br>
<b>Y-axis:</b> yAxis data<br>
<p>This chart plots count of blocked connections at firewall on each day of the week. Data collected from firewall logs. <a href="http://localhost:8000/Highcharts-3.0.10/examples/areaspline/index-areaspline-json-dynamic.htm">Plot</a></p>
</div>
</div>
</div><!-- /.col-sm-4 -->
<div class="col-sm-4">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">To be implemented</h3>
</div>
<div class="panel-body">
<b>Chart Type: Histogram</b><br>
<b>Source:</b> Some data<br>
<b>X-axis:</b> xAxis data<br>
<b>Y-axis:</b> yAxis data<br>
<p>This chart plots count of blocked connections at firewall on each day of the week. Data collected from firewall logs. <a href="http://localhost:8000/Highcharts-3.0.10/examples/spline-basic/index-spline-json-dynamic.htm">Plot</a></p>
</div>
</div>
</div><!-- /.col-sm-4 -->
<div class="page-header">
<h1>Why Visualization?</h1>
</div>
<div class="well">
<p><i>A picture is worh a thousand log records</i> <br>    Raffael Marty</p>
</div>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="../../dist/js/bootstrap.min.js"></script>
<script src="../../assets/js/docs.min.js"></script>
</body>
</html>