-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
936 lines (923 loc) · 37.4 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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Secure Coding</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/simple.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Wanna Cry?</h2>
<h4>Einstieg in Security by Design and Secure Coding</h4>
<p style="font-size:small;">
Stefan Etzold | Tobias Rademacher <br/>
13.10.2017
</p>
</section>
<section>
<h2>Agenda</h2>
<ul>
<li>Wanna Cry – Security Nightmares</li>
<li>Security by Design und Secure Coding</li>
<li>Secure Coding : Grundlagen (C#, Rust)</l>
<li>Hashing und Schlüsselableitung (KDF)</li>
<li>Dateiverschlüsselung, Authentifizierte Verschlüsselung</li>
<li>Transportverschlüsselung und Ende-zu-Ende-Verschlüsselung</li>
<li>Make it run, clean and secure?</li>
<li>Abschlussrunde</li>
</ul>
</section>
<section>
<h2>Disclaimer</h2>
</section>
<section>
<h2>About us</h2>
<h4>Vorstellungsrunde</h4>
</section>
<section>
<h2>About you</h2>
<h4>Vorstellungsrunde</h4>
</section>
<section>
<section>
<h2>Wanna Cry? - Nighmares</h2>
</section>
<section>
<h2>Wanna Cry</h2>
<ul>
<li>basisert auf Exploit der Sicherheitslücke MS17-010 im SMB-Protokoll (auch NetBIOS) von Microsoft</li>
<li>alle Windowsversionen betroffen</li>
<li>Ransomware mit RSA-Verschlüsselung</li>
<li>Problem: nicht aktuelle Windwos-Varianten, Windows XP</li>
</ul>
</section>
<section>
<img src="images/heartbleed_explanation.png" height="500"/>
</section>
<section>
<h2><a href="https://medium.com/@neha/cryptographic-vulnerabilities-in-iota-9a6a9ddc4367">Cryptographic vulnerabilities in IOTA</a></h2>
</section>
<section>
<h2>Challenges</h2>
</section>
<section>
<h2>Herausforderungen</h2>
<h4>CryptoWars 2.0/3.0</h4>
<ul>
<li><a href="http://www.wsj.com/article_email/justice-department-seeks-to-force-apple-to-extract-data-from-about-12-other-iphones-1456202213-lMyQjAxMTI2MjIzMzMyMTMwWj">Justice Department Seeks to Force Apple to Extract Data From About 12 Other iPhones</a></li>
<li><a href="http://www.heise.de/security/meldung/Crypto-Wars-3-0-Thueringens-Verfassungsschutzchef-fordert-Hintertueren-in-Krypto-Messengern-3095311.html">Crypto Wars 3.0: Thüringens Verfassungsschutzchef fordert Hintertüren in Krypto-Messengern</a></li>
<li><a href="http://arstechnica.com/tech-policy/2015/12/hillary-clinton-wants-manhattan-like-project-to-break-encryption/">Hillary Clinton wants “Manhattan-like project” to break encryption</a></li>
<li><a href="https://media.ccc.de/v/32c3-7386-crypto_wars_part_ii">Crypto Wars Part II - The Empires Strike Back</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Crypto-Wars-3-0-EU-Rat-diskutiert-Schluesselhinterlegung-2524990.html">Crypto Wars 3.0: EU-Rat diskutiert Schlüsselhinterlegung</a></li>
<li><a href="http://www.ccc.de/de/updates/2015/ccc-fordert-ausstieg-aus-unverschlusselter-kommunikation">CCC fordert Ausstieg aus unverschlüsselter Kommunikation</a></li>
<li><a href="https://agenda.weforum.org/2015/01/the-second-crypto-war-and-the-future-of-the-internet/">The second “Crypto War” and the future of the internet</a></li>
<li><a href="https://netzpolitik.org/2015/cryptowar-verfassungsschutz-fordert-ein-ende-der-kryptierten-kommunikation/">Cryptowar: Verfassungsschutz fordert ein Ende der „kryptierten Kommunikation“</a></li>
<li><a href="http://www.heise.de/newsticker/meldung/Obama-will-Verschluesselung-aufweichen-2520434.html">Obama will Verschlüsselung aufweichen</a></li>
</ul>
</section>
<section>
<h2>Herausforderungen</h2>
<h4>It's the econyomy, stupid!</h4>
<ul>
<li><a href="http://arstechnica.com/security/2014/12/sloppy-security-hygiene-made-sony-pictures-ripe-for-hacking/">Sloppy security hygiene made Sony Pictures ripe for hacking</a></li>
<li><a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2594754"/>Big Other: Surveillance Capitalism and the Prospects of an Information Civilization</a></li>
</ul>
</section>
<section>
<h2>Komplexität, Vernetzung, Verwundbarkeit und Resilienz</h2>
<h4>(systemtheoretische Perspektive, Luhmann)</h4>
<ul>
<li>Systemtheorie: lose und enge Kopplung (→ Vernetzungsgrad)</li>
<li>enge Kopplung erhöht <strong>Abhänigkeiten</strong> (Autonomieverluste)</li>
<li>enge Kopplung begünstigt <strong>Ausfälle</strong></li>
<li>enge Kopplung erhöht die <strong>Wahrscheinlichkeit von Angriffen</strong> (Hacking)</li>
<li>enge Kopplung erhöht die <strong>Attraktivität für Angriffe</strong></li>
</ul>
</section>
<section>
<h2><a href="https://www.heise.de/newsticker/meldung/Hackercamp-SHA2017-All-Computers-are-broken-3794575.html">Everything is broken</a></h2>
<ul>
<li>NSA v. SSL v. VPN (IPSec) v. Tor</li>
<li>SSL Attaken</li>
<li>Bad defaults</li>
</ul>
</section>
</section>
<section>
<section>
<h2>Security by Design und Secure Coding</h2>
</section>
<section>
<h2>Security by Design</h2>
<blockquote>»Secure by design, in software engineering, means that the software has been designed from the ground up to be secure.
Malicious practices are taken for granted and care is taken to
minimize impact when a security vulnerability is discovered or on invalid user input.« (<a href="https://en.wikipedia.org/wiki/Secure_by_design">Wikipedia</a>)
</blockquote>
</section>
<section>
<h2>Softwarequalität</h2>
<ul>
<li>Agilität: Make it run, make it clean, make it secure?</li>
<li>Penetrationtests</li>
<li>Fuzzing</li>
</ul>
</section>
<section>
<h2>Mindset & Hacker Ehtics</h2>
<ul>
<li>Greyhat</li>
<li>Advocatus Diaboli</li>
<li>Weiterbildung, Training, Intressse</li>
</ul>
</section>
<!--section>
<img src="images/security_primer.png" height="500px"//>
</section-->
<section>
<img src="images/GrayHatC_cover.png" height="500px"/>
</section>
<section>
<ul>
<li><a href="Cyber Security Books">Popular Cyber Security Books</a></li>
</ul>
</section>
<section>
<h4>Risikoanalyse an Hand von Bedrohungsmodellen</h4>
<p>Bedrohungsmodelle:</p>
<ul>
<li>beschreiben Möglichkeiten von Angriffen und decken Verhaltensweisen oder Übertragungswege und -formen auf, die mit Risiken verbunden sein können</li>
<li>helfen Grenzen und Möglichkeiten von technischen Lösungen wie Ende-zu-Ende-Verschlüsselung oder Transportverschlüsselung besser einzuschätzen und eigenes Verhalten anzupassen.</li>
</ul>
</section>
<section>
<h2>Bedrohungsmodell</h2>
<h4>Analyse</h4>
<img src="images/threat_model.png" height="500" with="480"/>
</section>
<section>
<h2>Die W-Fragen</h2>
<h4>Schutzintressen und -rahmen</h4>
<ul>
<li><strong>Was</strong> möchte ich schützen?</li>
<li><strong>Wie</strong> wahrscheinlich ist die Notwendigkeit es schützen zu müssen?</li>
<li>Vor <strong>wem</strong> möchte ich es schützen?</li>
<li><strong>Was</strong> sind die Konsequenzen, wenn der Schutz versagt?</li>
<li><strong>Wie viel</strong> Aufwand und Umstände möchte ich in Kauf nehmen und <strong>worauf</strong> möchte ich verzichten, um es zu schützen?</li>
</ul>
</section>
<section>
<h2>Assets</h2>
<h4>Beispiele</h4>
<ul>
<li>Passwörter</li>
<li>Geld</li>
<li>Dateien (Fotos, Videos, Dokument, etc.)</li>
<li>Chats, Unterhaltungen, Korrespondenzen</li>
<li>Metadaten</li>
<li>private Geheimnisse, Betriebsgeheimnisse</li>
</ul>
</section>
<section>
<h2>Angreifer</h2>
<h4>Beispiele</h4>
<ul>
<li>neugieriges Umfeld (Datenschutz)</li>
<li>Diebe, kriminelle Elemente</li>
<li>Nachrichtendienste mittels Massenüberwachung (NSA, GCHQ, BND)</li>
<li>Sicherheitsbehörden (BKA, Verfassungsschutz)</li>
</ul>
</section>
<section>
<h2>Folgen bei Schutzversagen</h2>
<h4>Beispiele</h4>
<ul>
<li>Identitätsdiebstahl: Hacker/Script-Kiddie übernimmt Facebook-Account</li>
<li>Übernahme/Verlust des Geräts: Smartphone, Laptop, Tablet, E-Book-Reader</li>
<li>Datenverlust: Messenger-App, welche es erlaubt übermittelte Bildnachrichten abzugreifen, Systemverschlüsselung durch Erpressungs-Trojaner</li>
</ul>
</section>
<section>
<h2>Angriffspotentiale</h2>
<h4>Beispiele</h4>
<ul>
<li><strong>physischer Gerätezugriff</strong> <em>Familienangehöriger installiert Überwachungssoftware auf meinem Gerät</em> </li>
<li><strong>Zugriff auf den Transportweg der Daten</strong> <em>Angreifer*In könnte das LAN/WLAN ausspionieren </em></li>
<li><strong>Phishing/Trojaner, Manipulation des Endpunktes der Kommunikation</strong> <em>Angreifer*In könnte eine Website gefälscht haben</em></li>
<li><strong>Manipulation des Systems/von Anwendungen</strong> <em> Angreifer*In nutzt Sicherheitslücken im System/ Applikationen </em></li>
</ul>
</section>
<section>
<h2>Fazit</h2>
<h4>Bedrohungsmodelle als Mittel zur Rationalisierung</h4>
<ul>
<li>Bedrohungsmodelle unterstützen bei der Abwägung von Risiken in Bezug auf Datensicherheit und -schutz</li>
<li>Bedrohungsmodelle identifizieren schützenswerte Güter (Assets), Angreifer*Innen, Risiken und Angriffspotentiale</li>
<li>Identifizierte Bedrohungen können besser eingeschätzt werden (Entscheidung für oder gegen Maßnahmen)</li>
</ul>
</section>
<section>
<h2>Grenzen erweitern</h2>
<h4>Basis: Grundregeln und Maßnahmen</h4>
<ul>
<li>Update, Updates, Updates</li>
<li>Backups, Backups, Backups</li>
<li>Virenscanner (+/-)</li>
<li>Verschlüsselung/Verschleierung</li>
<li>Unplugged: Sensible Daten auf System ohne Netzzugang aufbewahren und verschlüsseln</li>
</ul>
</section>
<section>
<h2>Grenzen</h2>
<p><img src="images/xkcd_538_security.png" height="500px"></img>
</p>
</section>
<section>
<h2>Secure Coding</h2>
<ul>
<li>Subset devensiver Programmierung</li>
<li>Verständlichkeit und Nachvollziebarkeit des Code erhöhen (auditierbar, wartbar)</li>
<li>Verwandschaft zum CleanCoding</li>
<li>Security v Obscurity</li>
</ul>
</section>
<section>
<h2>Secure Coding</h2>
<h4>Techniken</h4>
<ul>
<li>gute Kapselung (schwierig zu erreichen)</li>
<li>Strategie im Umgang mit Legacy Code</li>
<li>Input and output handling</li>
<li>Ressource-Balacing</li>
</ul>
</section>
<section>
<h2>Secure Coding</h2>
<h4>Techniken</h4>
<ul>
<li>Proaktiver Umgang mit potentiellen Bugs</li>
<li>Design by contract und Assertions</li>
<li>C#, Java, Ruby, Python …: Exception > Return Codes</li>
<li>Rust v C/Go: Error-Type+Matching/ErrorChain > Return Codes</li>
<li><a href="http://www.ccs.neu.edu/home/lieber/courses/csg110/sp08/Pragmatic%20Quick%20Reference.htm">The Pragmatic Programmer Quick Reference Guide</a></li>
</ul>
</section>
</section>
<section>
<section>
<h2>Grundlagen</h2>
</section>
<section>
<h2>Best Practices: <a href="https://www.owasp.org/index.php/.NET_Security_Cheat_Sheet">.NET Security Cheat Sheet</a></h2>
</section>
<section>
<h2>Exception Handling in C#</h2>
<ul>
<li>Best Practice</li>
<li>UnexcpectedExcetion Handler</li>
<li>catch ins Nirvana</li>
</ul>
</section>
<section>
<h2>Design by Contract in C#</h2>
<ul>
<li><a href="https://msdn.microsoft.com/de-de/library/dd264808(v=vs.110).aspx">Code Contracts</a></li>
<li>Design by Contract v UnitTesting</li>
</ul>
</section>
<section>
<h4>SecureString</h4>
<pre><code>
// Instantiate the secure string.
SecureString securePwd = new SecureString();
ConsoleKeyInfo key;
Console.Write("Enter password: ");
do
{
key = Console.ReadKey(true);
// Ignore any key out of range.
if (((int) key.Key) >= 65 && ((int) key.Key <= 90))
{
// Append the character to the password.
securePwd.AppendChar(key.KeyChar);
Console.Write("*");
}
// Exit if Enter key is pressed.
} while (key.Key != ConsoleKey.Enter);
Console.WriteLine();
securePwd.Dispose();
</code></pre>
</section>
<section>
<h2>How secure is SecureString?</h2>
<blockquote>
»Overall, SecureString is more secure than String because it limits the exposure of sensitive string data.
However, those strings may still be exposed to any process or operation that has access to raw memory,
such as a malicious process running on the host computer, a process dump, or a user-viewable swap file.« – <a href="https://msdn.microsoft.com/en-us/library/system.security.securestring.aspx#HowSecure">Code-Doku</a>
</blockquote>
</section>
<section>
<h2>How secure is SecureString?</h2>
<blockquote>
»Instead of using SecureString to protect passwords, the recommended alternative is to use an opaque handle
to credentials that are stored outside of the process.« – <a href="https://msdn.microsoft.com/en-us/library/system.security.securestring.aspx#HowSecure">Code-Doku</a>
</blockquote>
</section>
<section>
<h2>Andere Probleme in C#</h2>
<ul>
<li><code>goto</code></li>
<li>Crypto API unter verschiendenen Windows Plattformen/.Net Platformen</li>
<li>Leaking Information: z. B. Logging, Crash und Stacktrace im Eventlog</li>
<li>DLL-Hölle: in GAC we trust?</li>
<li>Pluginsysteme v Trust</li>
</ul>
</section>
<section>
<h2>Andere Probleme in C#</h2>
<ul>
<li>unsignierte Assemblies</li>
<li>Zugriff auf Win32 API</li>
<li>Userkontext, Systemkontext, Impersionierung</li>
<li><code>unsafe</code> und Pointer-Gedöns</li>
<li>COM-Anbindung</li>
</ul>
</section>
<section>
<h2>Error Handling in Rust</h2>
<ul>
<li><a href="https://doc.rust-lang.org/book/first-edition/error-handling.html#error-handling">Error Handling</a></li>
<li><a href="http://brson.github.io/2016/11/30/starting-with-error-chain">error-chain - Consistent error handling for Rust</a></li>
<li><a href="https://github.com/rust-lang/rfcs/blob/master/text/0243-trait-based-exception-handling.md">RFC 0243</a>: ?-Operator</li>
</ul>
</section>
<section>
<h2>Design by Contract in Rust</h2>
<p><a href="https://github.com/nrc/libhoare">LibHoare</a></p>
</section>
<section>
<h2>Crypto in Rust</h2>
<ul>
<li>vorzüge von Rust als systemnahe Programmiersprache</li>
<li>Aktuelle Empehlung: <a href="https://github.com/briansmith/ring">ring</a>, <a href="https://github.com/dnaq/sodiumoxide">libsodium Wrapper</a></li>
<li>rust-crypto mit Vorsicht verwenden</li>
<li>Fehlende Auditierung</li>
</ul>
</section>
</section>
<section>
<section>
<h2>Hashing</h2>
</section>
<section>
<h2>Kryptologische Hashfunktion</h2>
<ul>
<li>Einwegfunktionen: einfach ermittelbar, schwer umkehrbar</li>
<li>Schlüssellose Hashfunktionen: Einweg-Hashfunktionen und kollisionsresistente Hashfuntionen</li>
<li>Schlüsselabhänige Hashfunktionen: Message Authentication Codes (MAC)</li>
<li>kann zur Bildung von Fingerabdrücken zur Prüfung von Nachrichten(-blöcken) und zur Überprüfung von Dateidownloads verwendet werden</li>
</ul>
</section>
<section>
<h4>Kryptologische Hashfunktion</h4>
<h4>Übersicht (Auswahl)</h4>
<table>
<thead>
<tr>
<th>Verfahren</th>
<th>Veröffentlichung</th>
<th>Empfehlung</th>
</tr>
</thead>
<tbody>
<tr>
<td>MD5</td>
<td>1992</td>
<td>gilt als unsicher</td>
</tr>
<tr>
<td>SHA (SHA-Famlie)</td>
<td>1993 (SHA-0), 1995 (SHA-1), 2002 (SHA-256, SHA-384, SHA-512)</td>
<td>Im Februar 2017 wurde die erste Kollision für SHA-1 veröffentlicht. → <strong>SHA-512</strong> verwenden</td>
</tr>
<tr>
<td>RIPEMD</td>
<td>1992, 1996 (RIPEMD-128, RIPEMD-160)</td>
<td>kollisionen für die Variante von 1992 möglich</td>
</tr>
<tr>
<td>Whirlpool</td>
<td>2003</td>
<td>keine Kollisionen bekannt, 512 Bit Hashwert, zehn AES-Runden</td>
</tr>
<tr>
<td>SHA-3/Keccak</td>
<td>2011 (3. Version)</td>
<td>Alternative zu SHA-2</td>
</tr>
<tr>
<td>BLAKE</td>
<td>2010 (BLAKE2 2012)</td>
<td>BLAKE war einer der Finalisten im SHA-3-Auswahlverfahren der NIST.</td>
</tr>
</tbody>
</table>
</section>
</section>
<section>
<section>
<h2>Schlüsselableitung (KDF)</h2>
</section>
<section>
<h2>Exkurs</h2>
<h4>Schlüsselableidungsverfahren (KDF)</h2>
<ul>
<li>kryptologische Hashfunktion</li>
<li>speziell für das Hashen und Speichern von Passwörtern entwickelt wurde</li>
<li>mit dem Ziel entwickelt, das Hashing möglichst aufwändig zu gestalten</li>
</ul>
</section>
<section>
<h4>Schlüsselableidungsverfahren</h4>
<h4>Übersicht (Auswahl)</h4>
<table>
<thead>
<tr>
<th>Verfahren</th>
<th>basiert auf</th>
<th>Empfehlung</th>
</tr>
</thead>
<tbody>
<tr>
<td>PBKDF2</td>
<td><code>DK = PBKDF2(PRF, Password, Salt, c, dkLen)</code></td>
<td>vom NIST standardisiert; mit min. <strong>100 000</strong> Iteratioen durchführen</td>
</tr>
<tr>
<td>scrypt</td>
<td>sala20/8</td>
<td>mit niedrigen Parametern durch GPU-Hardware <strong>angereibarer als bcrypt</strong>; Seitenkanalattacke durch cache timing theoretisch möglich</td>
</tr>
</table>
</section>
<section>
<h4>Schlüsselableidungsverfahren</h4>
<h4>Übersicht (Auswahl)</h2>
<table>
<thead>
<tr>
<th>Verfahren</th>
<th>basiert auf</th>
<th>Empfehlung</th>
</tr>
</thead>
<tbody>
<tr>
<td>bcrypt</td>
<td>blowfish; Länge des Passworts auf 56 Bytes beschränkt</td>
<td>angreifbar (Wörterbuchangriff oder Brute-Force-Methode), bessere Ergebnisse als PBKDF2</td>
</tr>
<tr>
<td>Argon2</td>
<td>Blake2b</td>
<td>Empfehlung der unabhänigen Password Hashing Competition (PHC); weitere Finalisten: Catena, Lyra2, Makwa und yescrypt</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>PBKD2</h2>
<h4>Code-Bespiel C#</h4>
</section>
<section>
<h2>Argon2</h2>
<h4>Code-Bespiel C#</h4>
</section>
<section>
<h2>Argon2</h2>
<h4>Code-Bespiel Rust</h4>
</section>
</section>
<section>
<section>
<h2>Authentifizierte Verschlüsselung</h2>
</section>
<section>
<h4>Symmetrische Verschlüsselung (1/4)</h4>
<p>
<small><a class="test" href="https://de.wikipedia.org/wiki/Symmetrisches_Kryptosystem">
https://de.wikipedia.org/wiki/Symmetrisches_Kryptosystem
</a></small>
</p>
<p>Gleicher Schlüssel für Verschlüsselung und Entschlüsselung der Nachricht (oder Berechnung beider Schlüssel auseinander)</p>
<p>
<small><a class="test" href="https://www.youtube.com/watch?v=NK5Z6Oj0YkM">
Video zur Einführung in symmetrische Verschlüsselung (englisch)</a></small>
</p>
</section>
<section>
<h4>Symmetrische Verschlüsselung (2/4)</h4>
<p>
>Die Verschlüsselung hat zwei grundsätzliche Ziele:
<b>Konfusion und Diffusion</b>
</p>
<p>
<ul>
<li><b>1.) Konfusion:</b>
<ul>
<li>Zusammenhang zwischen Geheimtext und Schlüssel so komplex wie möglich machen um damit Kryptoanalyse zu erschweren</li>
<li>Erreicht wird das z. B. durch nichtlineare Substitutionen von Eingabe und Ausgabe</li>
</ul>
</li>
</ul>
</section>
<section>
<h4>Symmetrische Verschlüsselung (3/4)</h4>
<ul>
<br />
<li><b>2.) Diffusion:</b>
<ul>
<li>Auflösen von statistischen Strukturen des Klartextes</li>
<li>statistische Analyse nach Buchstabenhäufigkeit im Chiffretext läuft ins Leere </li>
</ul>
</li>
<p>
<br />guter Chiffretext ist nicht von Zufallszahlen und -zeichen zu unterscheiden</p>
</section>
<section>
<h4>Symmetrische Verschlüsselung (4/4)</h4>
<p>
<br /><b>2 Verfahrenstypen:</b></p>
<ul>
<li>Stromverschlüsselung</li>
<li>Blockverschlüsselung</li>
</ul>
</section>
<section>
<h4>Stromverschlüsselung (1/2)</h4>
<p>
Schema
</p>
<p>
<img src="images/stromverschluesselung.png" />
</p>
</section>
<section>
<h4>Stromverschlüsselung (2/2)</h4>
<p>
<small><a class="test" href="https://de.wikipedia.org/wiki/Stromchiffre">
https://de.wikipedia.org/wiki/Stromchiffre
</a></small>
</p>
<ul>
<li>Zeichen des Klartextes werden mit den Zeichen eines Schlüsselstroms verknüpft</li>
<li>Schlüsselstrom ist als pseudozufällige Zeichenfolge aus dem Schlüssel abgeleitet</li>
<li>jedes Klartextzeichen kann sofort in ein chiffriertes Ausgabezeichen übersetzen werden</li>
<li>besonders für Echtzeitübertragungen geeignet, z. B. für Mobilfunk</li>
</ul>
</section>
<section>
<h4>Blockverschlüsselung (1/3)</h4>
<p>
Schema
</p>
<p>
<img src="images/blockverschluesselung.png" height="500px" />
</p>
</section>
<section>
<h4>Blockverschlüsselung (2/3)</h4>
<p>
<small><a class="test" href="https://de.wikipedia.org/wiki/Blockchiffre">
https://de.wikipedia.org/wiki/Blockchiffre
</a></small>
</p>
<ul>
<li>Klartext fester Länge (Block) wird – bestimmt durch Schlüssel und Chiffrealgorithmus – in einen Geheimtext fester Länge gewandelt</li>
<li>mehrere Zeichen (Block) werden in einem Schritt ver- bzw. entschlüsselt, daher schnell</li>
<li>Blockchiffren können jeweils nur einen einzigen Block verschlüsseln</li>
<li>daher wird für Texte beliebiger Länge ein krypto­graphi­scher Betriebsmodus definiert, der die Anwendung des Verschlüsselungsalgorithmus auf den Datenstrom (mehrere Blöcke) festlegt</li>
</ul>
</section>
<section>
<h4>Blockverschlüsselung (3/3)</h4>
<p>
<small><a class="test" href="https://de.wikipedia.org/wiki/Blockchiffre">
https://de.wikipedia.org/wiki/Blockchiffre
</a></small>
</p>
<ul>
<li>modernen Blockchiffren als iterierte Blockchiffren konzipiert:
<ul>
<li>Eingabe wird in mehreren gleich aufgebauten Runden verarbeitet</li>
<li>Dazu werden aus dem Schlüssel sogenannte Rundenschlüssel abgeleitet</li>
</ul>
</li>
<br />
</ul>
</section>
<section>
<h2>AES-Verschlüsselung</h2>
<ul>
<li>Industriestandard</li>
<li>gilt als ungebrochen (sogar von der NSA)</li>
<li>Hardwarebeschleunigung</li>
<li>What possibly could go wrong?</li>
</ul>
</section>
<section>
<h2>Betriebsmodus: Electronic Codebook (EBC)</h2>
<ul>
<li>leaks information</li>
<li>CryptoPals: <a href="https://www.cryptopals.com/sets/1/challenges/8">Detect AES in ECB mode</a></li>
</ul>
<ul>
</section>
<section>
<h2>Betriebsmodus</h2>
<ul>
<li>denn geeignetesten verfügaren auswählen</li>
<li>Modes that require padding: ECB (›unpraktisch‹), <strong>CBC</strong>; besser: AES+CBC+HMAC</li>
<li>Stream cipher modes: <strong>CTR</strong>, OFB, CFB z. B. <strong>AES-GCM+CTR</strong></li>
<li>Disk Encryption Modes: XEX, <strong>XTS</strong>, LRW (Achtung nur dafür verwenden)</li>
</ul>
</ul>
</section>
<section>
<h2>Authentificated Encryption</h2>
<ul>
<li>Authenticated Encryption with Associated Data (AEAD)</li>
<li>verhindert <a href="https://blog.skullsecurity.org/2013/a-padding-oracle-example">padding oracle attacks</a> (z. B. <a href="https://en.wikipedia.org/wiki/Lucky_Thirteen_attack">Lucky 13</a>)</li>
<li>erkennt Mainpualitionen am Chiffrat (bei der Entschüsselunng)</li>
<li>fügt einen HMAC zur Verschlüsselung hinzu</li>
</ul>
</section>
<section>
<h2>Encrypt-then-MAC (EtM)</h2>
<img src="images/Authenticated_Encryption_EtM.png"/>
</section>
<section>
<h2>Exkurs: Initialisierungsvektor (IV)</h2>
<ul>
<li>Problem der Verknüpfung bei der Blockchiffierung</li>
<li>CBC: Known Plaintext Attac (bekannter Klartext)</li>
<li>Lösung: erste Klartextblock mit einem IV XOR-verknüpft</li>
<li>IV muss für jeden gesammten Verschlüsslungsvorgang <strong>krptografisch sicher zufällig erzeugt</strong> werden</li>
<li>vgl. Nonce (number used once, used only once)</li>
</ul>
</section>
<section>
<h2>Authentifizierte Verschlüsselung in C#</h2>
</section>
</section>
<section>
<section>
<h2>Transportverschlüsselung</h2>
</section>
<section>
<h2>HTTPS (SSL/TLS)</h2>
<ul>
<li>HTTPS: Standardverschlüsselung beim Abruf von Websites</li>
<li>SSL/TLS schützten die Übermittlung der Daten (Transportschicht)</li>
<li>Komplexes Protokoll, mit zwei Hauptzielen:
<ul>
<li>Verschlüsselung (Daten vor anderen verbergen)</li>
<li>Identifikation (Können sich zwei Kommunikationspartner vertrauen?)</li>
</ul>
</li>
<li>Zertifikate auf Anbieterseite (Website, WebServer) notwendig (Vertrauensdilemma)</li>
</ul>
</section>
<section>
<h2>SSL/TLS Protokoll (I)</h2>
<ol>
<li>Handshake: Server und Client (Browser) vereinbaren Art der Verschlüsselung (Wie wollen wir uns miteinander unterhalten?)</li>
<li>Server schickt ein Zertifikat und einen Schlüssel</li>
<li>Client: Beginne zu verschlüsseln</li>
<li>Server: Beginne zu verschlüsseln</li>
<li>SSL/TLS-Verschlüsselung etabliert</li>
</ol>
</section>
<section>
<h2>SSL/TLS Protokoll (II)</h2>
<img src="images/fig2SSL.gif" />
<p><a href="http://en.wikipedia.org/wiki/Transport_Layer_Security#Cipher">Chiper Suites</a></p>
</section>
<section>
<h2>SSL/TLS Protokoll (III)</h2>
<iframe width="640" height="390" src="https://www.youtube.com/embed/iQsKdtjwtYI" frameborder="0" allowfullscreen></iframe>
<p style="font-size:0.6em;"><a href="https://www.youtube.com/embed/iQsKdtjwtYI">How SSL works tutorial – with HTTPS example</a></p>
</section>
<section>
<h2>Broken Wing</h2>
<h4>SSL/TLS & Sicherheit (I)</h4>
<table>
<thead>
<tr>
<th>Verwundbarkeit</th>
<th>Attacke</th>
</tr>
</thead>
<tbody>
<tr>
<td>TLS 1.2</td>
<td><a href="http://www.mitls.org/pages/attacks/SLOTH">SLOTH</a></td>
</tr>
<tr>
<td>TLS 1.0 (RC4)</td>
<td><a href="http://resources.infosecinstitute.com/ssl-attacks/">Beast</a></td>
</tr>
<tr>
<td>SSL 3.0</td>
<td><a href="https://en.wikipedia.org/wiki/POODLE">POODLE</a> </td>
</tr>
<tr>
<td>SSL 2.0</td>
<td><a href="https://drownattack.com/">DROWN</a> </td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Broken Wing</h2>
<h4>SSL/TLS & Sicherheit (II)</h4>
<table>
<thead>
<tr>
<th>Verwundbarkeit</th>
<th>Attacke</th>
</tr>
</thead>
<tbody>
<tr>
<td>RSA-Export-Keys</td>
<td><a href="http://www.washingtonpost.com/blogs/the-switch/wp/2015/03/03/freak-flaw-undermines-security-for-apple-and-google-users-researchers-discover/">FREAK</a></td>
</tr>
<tr>
<td>Downgrading-Attacken</td>
<td><a href="https://weakdh.org/">Logjam</a>, SSL-Strip</td>
</tr>
<tr>
<td>Kompression</td>
<td><a href="https://en.wikipedia.org/wiki/CRIME_%28security_exploit%29">CRIME and BREACH attacks</a> </td>
</tr>
<tr>
<td>Cache-Timining-Attacke/Implementierung</td>
<td><a href="http://tonyarcieri.com/cream-the-scary-ssl-attack-youve-probably-never-heard-of">CREAM</a>, Heartbleet</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2><a href="https://jimshaver.net/2015/02/11/decrypting-tls-browser-traffic-with-wireshark-the-easy-way/">Decrypting TLS Browser Traffic With Wireshark</a></h2>
<img src="images/wireshark.png" />
</section>
<section>
<h2>Broken Wing</h2>
<h4>SSL/TLS & Sicherheit (IV)</h4>
<p>Das Problem mit den Root Zertifikaten</p>
<ul>
<li><a href="http://arstechnica.com/security/2015/02/ssl-hijacker-behind-superfish-debacle-imperils-big-number-of-users/">“SSL hijacker” behind Superfish debacle imperils large number of users</a></li>
<li><a href="https://technet.microsoft.com/en-us/library/security/2982792.aspx">Microsoft Security Advisory: Improperly Issued Digital Certificates Could Allow Spoofing</a></li>
</ul>
</section>
<section>
<h2><a href="https://www.ssllabs.com/ssltest/">SSL Test</a></h2>
<h4>Transportverschlüsselung prüfen</h4>
<img src="images/SSLServerTest.png" />
</section>
<section>
<h2>Deploying TLS 1.3: the great, the good and the bad</h2>
<h4> Improving the encrypted the web, one round-trip at a time </h4>
<video width="600" height="360" controls>
<source src="https://cdn.media.ccc.de/congress/2016/h264-hd/33c3-8348-eng-deu-spa-Deploying_TLS_13_the_great_the_good_and_the_bad_hd.mp4" type="video/mp4"></source>
<source src="https://cdn.media.ccc.de/congress/2016/webm-hd/33c3-8348-eng-deu-spa-Deploying_TLS_13_the_great_the_good_and_the_bad_webm-hd.webm" type="video/webm"></source>
Ihr Browser unterstützt das Objekt nicht!
</video>
</section>
<section>
<h2>Exkurs: <a href="http://http2-explained.haxx.se/content/en/">HTTP/2</a></h2>
<h4>HTTP Nachfolger</h4>
<ul>
<li>Kompatibilität zu den Vorgängern</li>
<li>Verschlüsselung defacto Standard</li>
<li>Geschwindigkeitssteigerung:</li>
<ul>
<li>Header Compression (Vorbild HSTS, Vermeidung von Caching/Timing-Attacken)</li>
<li>Server Push</li>
<li>Multiplexing</li>
<li>Problembehebung(en) von HTTP 1.1</li>
</ul>
</ul>
</section>
<section>
<h2>Bedrohungsmodell</h2>
<h4>Tracking/Transportverschlüsselung</h4>
<img src="images/threat_model_matrix_tracking.png" />
</section>
<section>
<h2>SSL in .Net und C#</h2>
<ul>
<li>SSLStream</li>
<li>Alternative: OpenSSL ? (Heartbleat, CREAM, usw.)</li>
</ul>
</section>
</section>
<section>
<h2>SSL in Rust</h2>
<ul>
<li>OpenSSL Bindings</li>
<li>Hoffnung: ring (Borring SSL)</li>
</ul>
</section>
</section>
<section>
<section>
<h2>Ende-zu-Ende-Verschlüsselung</h2>
</section>
<section>
<h2>Perfect Forward Secrecy</h2>
<ul>
<li>Späteres Aufdecken oder Brechen von geheimen Nutzerschlüsseln darf es nicht erlauben, frühere oder künftige Nachrichten zu entschlüsseln
</li>
<li>⇒ neue Schlüssel für jede Nachricht erzeugen</li>
</ul>
</section>
<section>
<h2>PFS-Problem</h2>
<ul>
<li>Schlüsselerzeugung <em>ohne</em> Schlüsselaustausch</li>
<li>erfordert, dass beide Teilnehmer online sind</li>
<li>erfordert einige Hilfsdaten in beide Richtungen</li>
<li>die Forderung FS ist strenggenommen unvereinbar mit asynchronen Nachrichten (wie SMS)</li>
<li>durch <a href="https://signal.org/docs/specifications/doubleratchet/">Double-Ratchet</a> gelöst. (Achtung, nicht alle Messenger-Apps implementieren Double Rachtet (z.B. Threema, Telegram)</li>
<li>OMEMO</li>
</ul>
</section>
<section>
<h2>OTR</h2>
<ul>
<li>Borisov/Goldberg/Brewer, 2004:<br />
<a href="https://otr.cypherpunks.ca/otr-wpes.pdf">https://otr.cypherpunks.ca/otr-wpes.pdf</a>
</li>
</ul>
<h4>Forderungen an OTR</h4>
<ul>
<li>Beglaubigung <em>während</em> der Konversation</li>
<li>Abstreitbarkeit <em>nach</em> der Konversation</li>
<li>Perfect Forward Secrecy (PFS)</li>
<li>Alle 3 Features auch in Nachfolgern (OMEMO, Double Ratchet, mpOTR)</li>
<li>einfaches OTR kann als Layer auf Chatsystem laufen (z.B. Plugin in ICQ/Client), bessere Protokolle brauchen Servererweiterung (XEP-0384 für Clients verlangt 0334 und/oder 0313 für Server)</li>
</ul><br />
</section>
<section>
<h2>The Good, The Bad and the Ugly</h2>
<h4>Ende-zu-Ende Verschlüsselung implementieren</h4>
<ul>
<li>Hoch gelobtes Code-Beipiel: Signal App (Java)</li>
<li>Wire App (<a href="https://github.com/wireapp/proteus">Rust</a>, Java)</li>
<li>Double Ratchet in C#: <a href="https://github.com/langboost/libsignal-protocol-pcl">libsignal-protocol-pcl</a>?</li>
<li>Obsurity: Telegramm (bittet nicht nachmachen)</li>
</ul>
</section>
</section>
</section>
<section>
<h2>Abschlussrunde</h2>
</section>
<section>
<h2>Vielen Dank!</h2>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
dependencies: [
{ src: 'plugin/markdown/marked.js' },
{ src: 'plugin/markdown/markdown.js' },
{ src: 'plugin/notes/notes.js', async: true },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>