-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTales.html
More file actions
244 lines (206 loc) · 7.31 KB
/
Tales.html
File metadata and controls
244 lines (206 loc) · 7.31 KB
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<html>
<head lang="en">
<meta charset="UTF-8">
<title>The Tale of 4 sites.</title>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css" id="theme">
<link rel="stylesheet" href="customcss/css/screen.css">
<link rel="stylesheet" href="lib/css/zenburn.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Security Tales from the Field</h2>
<h2>and security best practices. </h2>
<p>Michael Hess</p>
<h4>Do You Brush Your Teeth Daily?</h4>
<p>Please text: 734-821-5212</p>
<table class="answertable sticky-enabled">
<thead>
<tr>
<th>Answer Choice</th>
<th>Text Code:</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Yes</td>
<td>4483</td>
</tr>
<tr class="even">
<td>No</td>
<td>2983</td>
</tr>
<tr class="odd">
<td>I don't have any.</td>
<td>6276</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Michael Hess</h2>
<p>
Current Drupal Security Team Lead.
</p>
<p>
Member of the Drupal Infrastructure working group
</p>
<p>
Senior technologist at the University of Michigan.
</p>
<p>
Supports around 1300 Drupal sites.
</p>
<h6><a href="https://twitter.com/mlh407">Twitter: @mlh407</a></h6>
<aside class="notes">
10 years in Drupal
6 years on the secteam
build/consult on around 100 sites yearly
drupal 4.6(ish)
</aside>
</section>
<section>
<h2>At Michigan ...</h2>
<p>Health System</p>
<p> School of Information</p>
<p> Large scale/big data health research</p>
<p> Hosting </p>
</section>
<section>
<h2>Security</h2>
<p>
Stories and best practices
</p>
<p>
Focus on Drupal, but applies to all of the web.
</p>
</section>
<section data-background="images/target.jpg">
<h2>Why</h2>
<p>
The FBI notes that cyber attacks are eclipsing terrorism as the primary threat facing the US.
</p>
<p>
75% of small and medium business surveyed reported cyber attacks.
</p>
<p>
A single breach in 2010 reported 38 terabytes of data stolen. That is 2X the size of the Library of Congress.
</p>
</section>
<section>
<h4> Everyone gets hacked, so it must be trendy. </h4>
</section>
<section data-background="images/biggest-hacks.jpg">
</section>
<section data-background="images/hackers.jpg">
</section>
<section>
<h2>Agenda</h2>
<p>The Tale of the Red Ribbon Hacker</p>
<p>The Tale of the Ghost in the Website</p>
<p>The Tale of the Poisoned Update </p>
<p>The Tale We Have Heard Many Times</p>
<p>Overview of Drupal Security and the Drupal Security Team</p>
<p>Overview of Best Practices</p>
</section>
<section>
<h2>On to the Tales</h2>
<p> Please note, all details about the sites have been changed so they are not identifiable. </p>
</section>
<section id="tale1">
<!-- This will be filled in via jquery -->
</section>
<section id="tale2">
<!-- This will be filled in via jquery -->
</section>
<section id="tale3">
<!-- This will be filled in via jquery -->
</section>
<section id="tale4">
<!-- This will be filled in via jquery -->
</section>
<section id="best">
<!-- This will be filled in via jquery -->
</section>
<section>
<h1>Questions?</h1>
<p>Thank you for your time!</p>
</section>
<section>
<h2> Thanks</h2>
<p> Ben Jeavons for some of his background images</p>
</section>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
$(document).ready(function () {
$.get('tales/tale1.html', function (data) {
$("#tale1").empty().append(data);
});
$.get('tales/tale2.html', function (data) {
$("#tale2").empty().append(data);
});
$.get('tales/tale3.html', function (data) {
$("#tale3").empty().append(data);
});
$.get('tales/tale4.html', function (data) {
$("#tale4").empty().append(data);
});
$.get('tales/best.html', function (data) {
$("#best").empty().append(data);
});
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
width: 1290,
height: 800,
// Factor of the display size that should remain empty around the content
margin: 0.1,
// Bounds for smallest/largest possible scale to apply to content
minScale: 0.9,
maxScale: 1.5,
transition: 'fade', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{
src: 'lib/js/classList.js', condition: function () {
return !document.body.classList;
}
},
{
src: 'plugin/markdown/marked.js', condition: function () {
return !!document.querySelector('[data-markdown]');
}
},
{
src: 'plugin/markdown/markdown.js', condition: function () {
return !!document.querySelector('[data-markdown]');
}
},
{
src: 'plugin/highlight/highlight.js', async: true, condition: function () {
return !!document.querySelector('pre code');
}, callback: function () {
hljs.initHighlightingOnLoad();
}
},
{src: 'plugin/zoom-js/zoom.js', async: true},
{src: 'plugin/notes/notes.js', async: true}
]
});
});
</script>
</body>
</html>