-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1227 lines (1210 loc) · 73.7 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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="author" content="Vinícius Campitelli, [email protected]">
<title>O que você precisa saber sobre autenticação com JWT</title>
<link rel="stylesheet" href="reveal.js/dist/reset.css">
<link rel="stylesheet" href="reveal.js/dist/reveal.css">
<link rel="stylesheet" href="reveal.js/dist/theme/dracula.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/tokyo-night-dark.min.css"
integrity="sha512-dSQLLtgaq2iGigmy9xowRshaMzUHeiIUTvJW/SkUpb1J+ImXOPNGAI7ZC8V5/PiN/XN83B8uIk4qET7AMhdC5Q=="
crossorigin="anonymous" referrerpolicy="no-referrer"/>
<link rel="stylesheet" href="css/app.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&Fira+Code:wght@300&display=swap"
rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="256x256" href="/img/favicon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="reveal">
<div class="slides">
<section id="first">
<h1>O que você precisa saber sobre autenticação com JWT</h1>
<h2>Vinícius Campitelli</h2>
</section>
<section> <!-- Sobre mim -->
<section data-auto-animate>
<h1>Sobre mim</h1>
</section>
<section data-auto-animate>
<h1>Sobre mim</h1>
<div id="about-me">
<div class="text-center">
<img src="img/profile.jpg" alt="Vinícius Campitelli" id="profile-pic">
</div>
<ul>
<li>Desenvolvedor há 15 anos</li>
<li>Entusiasta em cibersegurança</li>
<li>Consultor de TI e instrutor de treinamentos</li>
</ul>
<div id="profile-name">Vinícius Campitelli</div>
<div class="about-me-links">
<div>
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"
class="fill"></path>
</svg>
<div>
<p>Slides & GitHub</p>
<a href="https://github.com/vcampitelli" target="_blank" rel="noopener">
vcampitelli
</a>
</div>
</div>
<div>
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"
class="fill"></path>
</svg>
<div>
<p>Twitter</p>
<a href="https://twitter.com/vcampitelli" target="_blank" rel="noopener">
vcampitelli
</a>
</div>
</div>
<div>
<svg role="img" viewBox="0 0 74 74" xmlns="http://www.w3.org/2000/svg">
<g fill="none" fill-rule="evenodd">
<path d="M8,72 L64,72 C68.418278,72 72,68.418278 72,64 L72,8 C72,3.581722 68.418278,-8.11624501e-16 64,0 L8,0 C3.581722,8.11624501e-16 -5.41083001e-16,3.581722 0,8 L0,64 C5.41083001e-16,68.418278 3.581722,72 8,72 Z"
class="fill"/>
<path d="M62,62 L51.315625,62 L51.315625,43.8021149 C51.315625,38.8127542 49.4197917,36.0245323 45.4707031,36.0245323 C41.1746094,36.0245323 38.9300781,38.9261103 38.9300781,43.8021149 L38.9300781,62 L28.6333333,62 L28.6333333,27.3333333 L38.9300781,27.3333333 L38.9300781,32.0029283 C38.9300781,32.0029283 42.0260417,26.2742151 49.3825521,26.2742151 C56.7356771,26.2742151 62,30.7644705 62,40.051212 L62,62 Z M16.349349,22.7940133 C12.8420573,22.7940133 10,19.9296567 10,16.3970067 C10,12.8643566 12.8420573,10 16.349349,10 C19.8566406,10 22.6970052,12.8643566 22.6970052,16.3970067 C22.6970052,19.9296567 19.8566406,22.7940133 16.349349,22.7940133 Z M11.0325521,62 L21.769401,62 L21.769401,27.3333333 L11.0325521,27.3333333 L11.0325521,62 Z"
class="fill-bg"/>
</g>
</svg>
<div>
<p>LinkedIn</p>
<a href="https://linkedin.com/in/viniciuscampitelli" target="_blank"
rel="noopener">
Vinícius Campitelli
</a>
</div>
</div>
</div>
</div>
</section>
</section> <!-- Sobre mim -->
<section> <!-- Framework JOSE -->
<section data-auto-animate data-auto-animate-restart>
<h1>Framework JOSE</h1>
</section>
<section data-auto-animate>
<h1>Framework JOSE</h1>
<p>
<span class="fs-italic"><b>J</b>SON <b>O</b>bject <b>S</b>igning and <b>E</b>ncryption</span>
é um conjunto para padronizar algumas representações utilizando o formato JSON:
</p>
<ul class="margin-sm font-size-sm">
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7515" target="_blank" rel="noopener">
RFC 7515</a>: Objetos Protegidos com Integridade <em>(JSON Web Signatures - JWS)</em>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7516" target="_blank" rel="noopener">
RFC 7516</a>: Objetos Criptografados <em>(JSON Web Encryption - JWE)</em>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7517" target="_blank" rel="noopener">
RFC 7517</a>: Representações de Chaves <em>(JSON Web Key - JWK)</em>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7518" target="_blank" rel="noopener">
RFC 7518</a>: Definições de Algoritmos <em>(JSON Web Algorithms - JWA)</em>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7520" target="_blank" rel="noopener">
RFC 7520</a>: Vetores de Teste dos Padrões acima
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7519" target="_blank" rel="noopener">
RFC 7519</a>: JSON Web Token <em>(JWT)</em>
</li>
</ul>
<a href="https://datatracker.ietf.org/wg/jose/charter/" target="_blank" rel="noopener"
class="reference">
datatracker.ietf.org
</a>
</section>
</section> <!-- Framework JOSE -->
<section> <!-- JWT -->
<section data-auto-animate data-auto-animate-restart>
<header>
<h1>Framework JOSE</h1>
<h2>JWT</h2>
</header>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWT</h2>
</header>
<blockquote>
JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred
between two parties.
</blockquote>
<a href="https://www.rfc-editor.org/rfc/rfc7519" target="_blank" rel="noopener"
class="reference">RFC 7519</a>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWT</h2>
</header>
<p>
Geralmente, é utilizado como um <kbd>access token</kbd>, que garante acesso a um determinado
recurso (ou conjunto de recursos)
</p>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWT</h2>
</header>
<blockquote>
The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web
Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure,
enabling the claims to be digitally signed or integrity protected with a Message
Authentication Code (MAC) and/or encrypted.
</blockquote>
<a href="https://www.rfc-editor.org/rfc/rfc7519" target="_blank" rel="noopener"
class="reference">RFC 7519</a>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWT</h2>
</header>
<img src="img/jwt-abstract.svg" class="insert-svg">
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWT</h2>
</header>
<p>Exemplo de um JWT:</p>
<div class="word-break line-height-sm mb-4">
<code class="color-link font-size-sm">
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ2aW5pY2l1c2NhbXBpdGVsbGkuY29tIiwiYXVkIjoicGFsZXN0cmFzIiwic3ViIjoiYXV0ZW50aWNhY2FvLWp3dCIsImlhdCI6MTY4NzQyNzQwMH0.wgF5eAdmH3lUpnjYvm2yhbF6RYtr1uiQUCtf-s62W9M
</code>
</div>
</section>
<section>
<header>
<h1>Framework JOSE</h1>
<h2>Fluxo de Autenticação com JWT</h2>
</header>
<img src="img/flow.svg" class="insert-svg">
</section>
<section>
<header>
<h1>Framework JOSE</h1>
<h2>JWT: Prós</h2>
</header>
<ul class="margin">
<li>
Maneira <em>(relativamente)</em> segura para trocar informações de
autenticação e autorização
</li>
<li>
Gerenciamento de sessão <em>stateless</em>, já que o
<em>token</em> é auto-contido
</li>
<li>
Diminui gargalo no <kbd>Serviço de Autenticação</kbd>, já que os outros serviços são
capazes de validar o <em>token</em> sem acessá-lo
</li>
</ul>
</section>
<section>
<header>
<h1>Framework JOSE</h1>
<h2>JWT: Contras</h2>
</header>
<ul class="margin">
<li>
Se a aplicação é um monolito
</li>
<li>
Maior complexidade para lidar com revogação de <em>tokens</em>
</li>
<li>
Pode se tornar muito grande, adicionando um grande <em>overhead</em> nas requisições ou
até utilizando todo o espaço do <em>cookie</em> ou dos cabeçalhos HTTP
</li>
<li>
Necessita de mais cuidados de segurança tanto do <kbd>Serviço de Autenticação</kbd>
quanto dos <kbd>Serviços de Negócio</kbd>
</li>
<li>
Dificuldade em identificar usuários atualmente logados no sistema
</li>
<li>
Em alguns casos, é mais recomendável usar <em>tokens</em> opacos e/ou a própria
funcionalidade de sessões do <em>back-end</em>
</li>
</ul>
</section>
</section> <!-- JWT -->
<section> <!-- Padrões -->
<section>
<header>
<h1>Framework JOSE</h1>
<h2>Outros padrões</h2>
</header>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWS</h2>
</header>
<blockquote>
JSON Web Signature (JWS) represents content secured with digital signatures or Message
Authentication Codes (MACs) using JSON-based data structures.
</blockquote>
<a href="https://www.rfc-editor.org/rfc/rfc7515" target="_blank" rel="noopener"
class="reference">RFC 7515</a>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWS</h2>
</header>
<pre class="mb-4"><code class="hljs color-default no-highlight word-break" data-trim
data-noescape>
<span class="fragment highlight-blue" data-fragment-index="0">eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9</span>.<span
class="fragment highlight-green" data-fragment-index="1">eyJpc3MiOiJ2aW5pY2l1c2NhbXBpdGVsbGkuY29tIiwiYXVkIjoicGFsZXN0cmFzIiwic3ViIjoiYXV0ZW50aWNhY2FvLWp3dCIsImlhdCI6MTY4NzQyNzQwMH0</span>.<span
class="fragment highlight-red" data-fragment-index="2">wgF5eAdmH3lUpnjYvm2yhbF6RYtr1uiQUCtf-s62W9M</span>
</code></pre>
<div class="d-grid half-columns">
<span class="font-size-sm fragment color-blue" data-fragment-index="0">Cabeçalho</span>
<pre class="fragment mx-0 my-1" data-fragment-index="0"><code>base64url({"alg": "HS256", "typ": "JWT"})</code></pre>
<span class="font-size-sm fragment color-green" data-fragment-index="1">Corpo</span>
<pre class="fragment mx-0 my-1" data-fragment-index="1"><code data-trim>
base64url({
"iss": "viniciuscampitelli.com",
"aud": "palestras",
"sub": "autenticacao-jwt",
"iat": 1687427400
})
</code></pre>
<span class="font-size-sm fragment color-red" data-fragment-index="2">Assinatura</span>
<pre class="fragment mx-0 my-1"
data-fragment-index="2"><code>base64url(hmac(header . payload))</code></pre>
</div>
</section>
<section data-auto-animate data-auto-animate-restart>
<header>
<h1>Framework JOSE</h1>
<h2>JWE</h2>
</header>
<blockquote>
JSON Web Encryption (JWE) represents encrypted content using JSON-based data structures.
</blockquote>
<a href="https://www.rfc-editor.org/rfc/rfc7516" target="_blank" rel="noopener"
class="reference">RFC 7516</a>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWE</h2>
</header>
<p>
Em alguns casos, utiliza-se uma abordagem híbrida de criptografia: <b>Criptografia
simétrica</b> para criptografar o <em>payload</em> e <b>Criptografia assimétrica</b> para
cripotgrafar a <kbd>Chave simétrica</kbd>
</p>
<a href="https://www.rfc-editor.org/rfc/rfc7516" target="_blank" rel="noopener"
class="reference">RFC 7516</a>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWE</h2>
</header>
<pre class="mb-4"><code class="hljs color-default no-highlight word-break font-size-sm" data-trim
data-noescape>
<span class="fragment highlight-blue" data-fragment-index="0">eyJhbGciOiJFQ0RILUVTK0EyNTZLVyIsImVuYyI6IkEyNTZHQ00iLCJlcGsiOnsieCI6IlRubVZ5d2JLNjFNNktPU2gzbFlpZmpGdmoxajdLTTFTYjBsMUZ4VGVoQVUiLCJjcnYiOiJQLTI1NiIsImt0eSI6IkVDIiwieSI6Ik5TSWJFc0FCQmpwRGtpdXFjaUF0Z0tXQ1J5bEctSV9aOHZLemhXZ1pSY2sifX0</span>.<span
class="fragment highlight-green" data-fragment-index="1">AshQJDAEbptscEvc3VuHzX_Ae3PsH3WFaGzKmA-QjcoJsziILktqKw</span>.<span
class="fragment highlight-red" data-fragment-index="2">W8n4sxRmfroCN65Z</span>.<span
class="fragment highlight-cyan custom" data-fragment-index="3">Ieg4R4SHVUoVHqHkQWccfsyRed8VT_-NtqxC0Io1dFHH8L-I3Bk-UdOPvwmO1hkBH3KCrcYgrFU-2hqb1E7fD3_DyPJ9uqBYhDrn1kpTxsTYnhX0z3DV1zPZAcHy9p6urytFMUV18k8huON0XA</span>.<span
class="fragment highlight-violet custom"
data-fragment-index="4">P6rEnI71xYgqhdxDDuj8jA</span>
</code></pre>
<div class="d-grid half-columns">
<span class="font-size-sm fragment color-blue" data-fragment-index="0">Cabeçalho</span>
<pre class="fragment mx-0 my-1" data-fragment-index="0"><code
class="javascript font-size-sm line-height-normal word-break" data-trim>
base64url({"alg":"ECDH-ES+A256KW","enc":"A256GCM","epk":{"x":"TnmVywbK61M6KOSh3lYifjFvj1j7KM1Sb0l1FxTehAU","crv":"P-256","kty":"EC","y":"NSIbEsABBjpDkiuqciAtgKWCRylG-I_Z8vKzhWgZRck"}})
</code></pre>
<span class="font-size-sm fragment color-green" data-fragment-index="1">Chave</span>
<pre class="fragment mx-0 my-1" data-fragment-index="1">
<code class="javascript font-size-sm line-height-normal" data-trim>base64url(key)</code>
</pre>
<span class="font-size-sm fragment color-red" data-fragment-index="2">IV</span>
<pre class="fragment mx-0 my-1" data-fragment-index="2">
<code class="javascript font-size-sm line-height-normal" data-trim>base64url(iv)</code>
</pre>
<span class="font-size-sm fragment color-cyan" data-fragment-index="3">Corpo</span>
<pre class="fragment mx-0 my-1" data-fragment-index="3">
<code class="javascript font-size-sm line-height-normal" data-trim>
base64url(encrypt({
"iat": 1687136586,
"sub": "autenticacao-jwt",
"iss": "viniciuscampitelli.com",
"aud": "palestras",
"exp": 1687140186
}, key))
</code></pre>
<span class="font-size-sm fragment color-violet" data-fragment-index="4">Tag</span>
<pre class="fragment mx-0 my-1" data-fragment-index="4">
<code class="javascript font-size-sm line-height-normal" data-trim>base64url(tag)</code>
</pre>
</div>
</section>
<section data-auto-animate data-auto-animate-restart>
<header>
<h1>Framework JOSE</h1>
<h2>JWA</h2>
</header>
<blockquote>
This specification registers cryptographic algorithms and identifiers to be used with the
JSON Web Signature (JWS), JSON Web Encryption (JWE), and JSON Web Key (JWK) specifications.
</blockquote>
<a href="https://www.rfc-editor.org/rfc/rfc7518" target="_blank" rel="noopener"
class="reference">RFC 7518</a>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWA</h2>
</header>
<p>Alguns algoritmos para JWS:</p>
<table class="font-size-sm" data-id="table">
<tbody>
<tr>
<td class="nowrap">
<code class="fragment semi-fade-out" data-fragment-index="0">HS256</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">HS384</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">HS512</code>
</td>
<td class="font-size-sm">HMAC usando SHA-256, SHA-384 ou SHA-512</td>
</tr>
<tr>
<td class="nowrap">
<code class="fragment semi-fade-out" data-fragment-index="0">RS256</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">RS384</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">RS512</code>
</td>
<td class="font-size-sm">RSASSA-PKCS1-v1_5 usando SHA-256, SHA-384 ou SHA-512</td>
</tr>
<tr>
<td class="nowrap">
<code class="fragment custom underline" data-fragment-index="0">ES256</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">ES384</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">ES512</code>
</td>
<td class="font-size-sm">
ECDSA usando P-256+SHA-256, P-384+SHA-384 ou P-521+SHA-512
</td>
</tr>
<tr>
<td><code class="fragment semi-fade-out" data-fragment-index="0">none</code></td>
<td class="font-size-sm fragment strike highlight-red" data-fragment-index="0">
Sem assinatura digital ou MAC
<span class="fragment" data-fragment-index="0">⚠</span>️
</td>
</tr>
</tbody>
</table>
<p class="fragment font-size-xs" data-fragment-index="0">
* <code class="fragment custom underline vertical-middle" data-fragment-index="0">Algoritmo
recomendado</code>
</p>
<a href="https://www.rfc-editor.org/rfc/rfc7518#section-3.1" target="_blank" rel="noopener"
class="reference">
RFC 7518: Seção 3.1. "alg" (Algorithm) Header Parameter Values for JWS
</a>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWA</h2>
</header>
<p>Alguns algoritmos para JWE:</p>
<table class="font-size-sm">
<tbody>
<tr>
<td class="nowrap">
<code class="fragment custom underline" data-fragment-index="0">RSA-OAEP</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">RSA-OAEP-256</code>
</td>
<td>
RSAES-OAEP e RSAES-OAEP com SHA-256 e MGF1
</td>
</tr>
<tr>
<td class="nowrap">
<code class="fragment semi-fade-out" data-fragment-index="0">A128KW</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">A192KW</code>,
<code class="fragment semi-fade-out" data-fragment-index="0">A256KW</code>
</td>
<td>AES Key Wrap usando chaves de 128, 192 ou 256 bits</td>
</tr>
<tr>
<td class="nowrap">
<code class="fragment custom underline" data-fragment-index="0">ECDH-ES</code>
</td>
<td>Curvas Elípticas com Troca de Chaves de Diffie-Hellman usando Concat KDF</td>
</tr>
<tr>
<td class="nowrap">
<code class="fragment semi-fade-out" data-fragment-index="0">dir</code>
</td>
<td>Uso direto de uma chave simétrica</td>
</tr>
</tbody>
</table>
<p class="fragment font-size-xs" data-fragment-index="0">
* <code class="fragment custom underline vertical-middle" data-fragment-index="0">Algoritmos
recomendados</code>
</p>
<a href="https://www.rfc-editor.org/rfc/rfc7518#section-4.1" target="_blank" rel="noopener"
class="reference">
RFC 7518: Seção 4.1. "alg" (Algorithm) Header Parameter Values for JWE
</a>
</section>
<section id="jwks" data-auto-animate data-auto-animate-restart>
<header>
<h1>Framework JOSE</h1>
<h2>JWK e JWKS</h2>
</header>
<blockquote>
A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a
cryptographic key. This specification also defines a JWK Set JSON data structure that
represents a set of JWKs.
</blockquote>
<a href="https://www.rfc-editor.org/rfc/rfc7517" target="_blank" rel="noopener"
class="reference">RFC 7517</a>
</section>
<section data-auto-animate>
<header>
<h1>Framework JOSE</h1>
<h2>JWK e JWKS</h2>
</header>
<p>
Hospede-o em um endereço público para que os <kbd>Serviços de Negócio</kbd> o consultem,
como em <a href="https://www.facebook.com/.well-known/oauth/openid/jwks/" target="_blank"
rel="noopener">facebook.com/.well-known/oauth/openid/jwks</a>:
</p>
<pre><code class="json font-size-sm" data-trim>
{
"keys": [
{
"kid": "852b4c741351eedc6ec8ae783b98eeabe2157daa",
"kty": "RSA",
"alg": "RS256",
"use": "sig",
"n": "u0XiI326DxaxrD4eO9kt2B80M7NfPKcIx5AuwBj7gxVow3u8TSUr8xdycxcp_KNlKu5_MBpYOjY0CbnHM5GCiTAFI54xCRNlVTOE16f3FrSuE0ipMBw-njXO39q-BcTKGkF1Ey0hQ15AZYpaUXzFJTVC42nmnqP_TYSRBCtSTX1C2WGOuX8wOhJzzEmwcCS9VWpuSDVwtmz87c3eyn_XXtZKE8Gi2_Ibx_3K9p-RoXUhHwJrtvWqA_kz5s-zSTOU8-0hPhNwKI2Ep9juVvs_wnrvE8E0aJogNHcBodR6GvxWIkklz5yQwxe5RwrxtX71PAAynm4Kpp0KobH3A98avQ",
"e": "AQAB"
},
{
"kid": "370fa58a78d23043256a2cc580f1cf9ed3b9bbe7",
"kty": "RSA",
"alg": "RS256",
"use": "sig",
"n": "ylVSkbdJm-Q76nrrPpv7RaGlQVjRfxw5z9OwkM7qzFdUW15QJFrN8nozL21VnOs-2rAfsoctoA8aQVMmtuWsyeGIpdLrupMVsKqC9bS5_7CQFXRGhQbxsZN1WDU9PcyzQamqFMfOEl3Blj3gZr13TMHxaOB0IH6OeMDlzUGWIsbrX4_QyYXr2Wj8xNNdZ7NwmRrik0dFTBg_-TjTvBzV10WkhbnHT7Lukri1XSEKhjGqAeD0zfGaixhunx3PcFtuB5HNB9qdpkxMeDUG0oUZ3MX-WY5ppfYMBs8euR1OPG26BAcBM5j4OFuCy8zEv5ornodoa71Af-JbEdyr8smCyw",
"e": "AQAB"
}
]
}
</code></pre>
</section>
</section> <!-- Padrões -->
<section> <!-- Claims -->
<section data-auto-animate data-auto-animate-restart>
<h1>Claims</h1>
</section>
<section data-auto-animate>
<h1>Claims</h1>
<p>
São os elementos que compõe o corpo do JWT, e você é livre para criá-lo do jeito que
preferir
</p>
<p>
Entretanto, existem algumas <span class="fw-bold">Registradas</span> para padronização na
<a href="https://www.rfc-editor.org/rfc/rfc7519.html#section-10.1" target="_blank"
rel="noopener">Seção 10.1. JSON Web Token Claims Registry</a> da RFC 7519
</p>
<a href="https://www.rfc-editor.org/rfc/rfc7519.html#section-4" target="_blank" rel="noopener"
class="reference">RFC 7519: Seção 4. JWT Claims</a>
</section>
<section data-auto-animate>
<h1>Claims</h1>
<p>
Claims registradas na <a href="https://www.rfc-editor.org/rfc/rfc7519.html#section-10.1"
target="_blank" rel="noopener">Seção 10.1. JSON Web Token Claims
Registry</a>:
</p>
<table class="font-size-sm">
<thead>
<tr>
<th>Claim</th>
<th>Significado</th>
<th>Descrição</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>iss</code></td>
<td><em>Issuer</em></td>
<td>Serviço que emitiu o token</td>
</tr>
<tr>
<td><code>aud</code></td>
<td><em>Audience</em></td>
<td>Recipiente do JWT</td>
</tr>
<tr>
<td><code>sub</code></td>
<td><em>Subject</em></td>
<td>Indivíduo para o JWT (autor)</td>
</tr>
<tr>
<td><code>iat</code></td>
<td><em>Issued At</em></td>
<td><em>Timestamp</em> da geração do token</td>
</tr>
<tr>
<td><code>exp</code></td>
<td><em>Expiration Time</em></td>
<td><em>Timestamp</em> da expiração</td>
</tr>
<tr>
<td><code>nbf</code></td>
<td><em>Not Before</em></td>
<td><em>Timestamp</em> em que o <em>token</em> passa a ser válido</td>
</tr>
<tr>
<td><code>jti</code></td>
<td><em>JWT ID</em></td>
<td>Identificador único do token</td>
</tr>
</tbody>
</table>
<a href="https://www.iana.org/assignments/jwt/jwt.xhtml#claims" target="_blank" rel="noopener"
class="reference">iana.org</a>
</section>
</section> <!-- Claims -->
<section> <!-- Recomendações -->
<section>
<h1>Recomendações</h1>
</section>
<section>
<header>
<h1>Recomendações</h1>
<h2>Algoritmos</h2>
</header>
<p class="fw-bold">Para JWS:</p>
<ul>
<li>
Se você possuir apenas <b>um</b> <kbd>Serviço de Negócio</kbd>, pode usar
<code>HS256</code>
<ul>
<li>
Senão, use <code>ES256</code> se disponível ou finalmente opte por
<code>RS256</code>
</li>
<li>
Utilize <a href="#jwks">JWKS</a> para expôr as chaves públicas
</li>
</ul>
</li>
<li>
<span>⚠</span>️ Garanta que não está aceitando <code>none</code>
</li>
</ul>
<p class="fw-bold">Para JWE:</p>
<ul>
<li>Se disponível, <code>ECDH-ES</code></li>
<li>Senão, <code>RSAES-OAEP</code></li>
</ul>
</section>
<section>
<header>
<h1>Recomendações</h1>
<h2>Chaves</h2>
</header>
<p>Recomendações mínimas para cada algoritmo:</p>
<ul class="margin-sm font-size-sm">
<li>
Funções de <em>hashing</em> <span class="font-size-sm">(HS256, HS384 ou HS512)</span>:
respeite o pedido do algoritmo (256, 384 ou 512 bits) e utilize boa entropia
</li>
<li>
Chaves RSA: o mínimo recomendável é de 2048 bits
</li>
<li>
Chaves de Curva Elíptica (EC): utilize o algoritmo <em>prime256v1</em>
</li>
</ul>
<p>
Em todos os casos, crie uma política de <b>Rotação de chaves</b>!
</p>
<a href="https://programmerall.com/article/4483729988/" target="_blank" rel="noopener"
class="reference">JWT signature algorithm HS256, RS256 and ES256 and key generation</a>
</section>
<section>
<header>
<h1>Recomendações</h1>
<h2>Refresh tokens</h2>
</header>
<p>
Outro tipo de <em>token</em> enviado junto com o <kbd>access token</kbd> que possui a
principal funcionalidade de <b>diminuir a superfície de ataque</b>
</p>
<p>
Deve ser utilizado para receber um novo <kbd>access token</kbd> após sua expiração e ser
usado somente uma única vez
</p>
<p>
Com isso, é possível ter JWTs com um tempo de expiração curto para aumentar a segurança
</p>
<a href="https://auth0.com/blog/refresh-tokens-what-are-they-and-when-to-use-them/"
target="_blank" rel="noopener" class="reference">Auth0: What Are Refresh Tokens and How to
Use Them Securely</a>
</section>
<section data-auto-animate data-auto-animate-restart>
<header>
<h1>Recomendações</h1>
<h2>Expiração</h2>
</header>
<p class="fw-bold">Para Comunicação entre Serviços:</p>
<p>
Utilize um tempo de expiração bastante curto (por exemplo, 15 minutos), fazendo com que o
serviço cliente deva frequentemente reautenticar-se
</p>
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Expiração</h2>
</header>
<p class="fw-bold">Para Usuários:</p>
<p>
Crie um JWT com expiração de <em>uma semana*</em> e envie um <kbd>refresh token</kbd> com
expiração maior (<em>um mês*</em>)
</p>
<p class="fragment">
A cada acesso do usuário à aplicação ou a cada intervalo de tempo (<em>uma hora*</em>),
utilize o <kbd>refresh token</kbd> para conseguir outros novos <kbd>access token</kbd> e
<kbd>refresh token</kbd>
</p>
<p class="fragment">
Se o usuário não acessar a aplicação nesse tempo, faça-o logar novamente
</p>
<p class="fragment font-size-sm"><em>* Defina esses tempos com sua equipe de Produto/UX</em></p>
</section>
<section data-auto-animate data-auto-animate-restart>
<header>
<h1>Recomendações</h1>
<h2>Onde guardar?</h2>
</header>
<p class="fw-bold">Em aplicações Web:</p>
<p>
<span class="fw-bold">Estratégia 1:</span> guardar o <em>token</em> somente em memória em
seu código JavaScript, podendo também utilizar <a
href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API" target="_blank"
rel="noopener">Web Workers</a> para salvá-lo
</p>
<a href="https://thenewstack.io/leveraging-web-workers-to-safely-store-access-tokens/"
target="_blank" rel="noopener" class="reference">
The New Stack: Leveraging Web Workers to Safely Store Access Tokens
</a>
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Onde guardar?</h2>
</header>
<p class="fw-bold">Em aplicações Web:</p>
<p>
<span class="fw-bold">Estratégia 2:</span> utilizar <code>Cookie</code> (e não <code>LocalStorage</code>)
com as <span class="fs-italic">flags</span>:
</p>
<ul>
<li><code>Secure</code> para apenas trafegar em HTTPS</li>
<li><code>HttpOnly</code> para impedir acesso via JavaScript</li>
<li>
<code>SameSite</code> como <code>Strict</code> para permiti-lo apenas em seu domínio
</li>
</ul>
<a href="https://auth0.com/docs/secure/security-guidance/data-security/token-storage"
target="_blank" rel="noopener" class="reference">
Auth0: Token Storage
</a>
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Onde guardar?</h2>
</header>
<p class="fw-bold">Em aplicações Mobile:</p>
<p>
Guarde o <em>token</em> no armazenamento seguro específico da plataforma ou biblioteca, por
exemplo:
</p>
<ul>
<li>
Android: <a
href="https://developer.android.com/reference/android/content/SharedPreferences"
target="_blank" rel="noopener"><code>SharedPreferences</code></a>
</li>
<li>
iOS: <a href="https://developer.apple.com/documentation/security/keychain_services"
target="_blank" rel="noopener"><code>Keychain</code></a>
</li>
<li>
React Native (Expo): <a href="https://docs.expo.dev/versions/latest/sdk/securestore/"
target="_blank" rel="noopener"><code>SecureStore</code></a>
</li>
<li>
Flutter: <a href="https://pub.dev/packages/flutter_secure_storage"
target="_blank" rel="noopener"><code>flutter_secure_storage</code></a>
</li>
</ul>
</section>
<section data-auto-animate data-auto-animate-restart>
<header>
<h1>Recomendações</h1>
<h2>Revogação</h2>
</header>
<p>
Um dos maiores desafios ao se utilizar JWT, pois geralmente é bastante custoso
computacionalmente, inclusive sendo um ponto decisivo se você deve usar JWTs ou não
</p>
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Revogação</h2>
</header>
<p class="fw-bold">Estratégia 1:</p>
<p data-id="desc">
Guarde o <code>jti</code> do <em>token</em> em algum armazenamento como <em>denylist</em> e
garanta que os <kbd>Serviços de Negócio</kbd> o consultem ao validar o JWT
</p>
<p>
Para revogar todos os <em>tokens</em> de um usuário, faça o mesmo para o <code>sub</code>
</p>
<div class="fragment alert" data-id="nota">
Nota: você só precisa guardar aquela informação até a data de expiração do <em>token</em>,
então se usar algo em memória (como Redis ou memcached), você pode utilizar a própria
funcionalidade de <em>time-to-live</em> do serviço
</div>
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Revogação</h2>
</header>
<p class="fw-bold">Estratégia 1:</p>
<img src="img/revogacao-denylist.svg" alt="Denylist para revogação">
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Revogação</h2>
</header>
<p class="fw-bold">Estratégia 1:</p>
<p>
<span class="fw-bold">Prós:</span> expiração quase instantânea
</p>
<p class="fw-bold">Contras:</p>
<ul>
<li>
Inviável se houver muitos <kbd>Serviços de Negócio</kbd> (ou se são clientes)
</li>
<li>Pode criar gargalos no armazenamento</li>
</ul>
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Revogação</h2>
</header>
<p class="fw-bold">Estratégia 2:</p>
<p>
Usar Eventos ou Webhooks para informar os <kbd>Serviços de Negócio</kbd> que o
<em>token</em> com aquele <code>jti</code> ou <code>sub</code> não pode mais ser aceito
</p>
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Revogação</h2>
</header>
<p class="fw-bold">Estratégia 2:</p>
<img src="img/revogacao-eventos.svg" alt="Eventos para revogação">
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Revogação</h2>
</header>
<p class="fw-bold">Estratégia 2:</p>
<p>
<span class="fw-bold">Prós:</span> mantém o JWT totalmente <em>stateless</em>
</p>
<p><span class="fw-bold">Contras:</span></p>
<ul>
<li>
Inviável se houver muitos <kbd>Serviços de Negócio</kbd> (ou se são clientes)
</li>
<li>Pode criar gargalos no armazenamento</li>
</ul>
</section>
<section data-auto-animate>
<header>
<h1>Recomendações</h1>
<h2>Revogação</h2>
</header>
<p class="fw-bold">Estratégia 3:</p>
<p>
Criar o JWT com um tempo de expiração muito curto (alguns minutos, por exemplo) e o
<em>refresh token</em> com um tempo maior (uma semana ou mais)
</p>
<div class="fragment mt-3">
<p>
<span class="fw-bold">Prós:</span> toda a estratégia fica centralizada no <kbd>Serviço
de autenticação</kbd>
</p>
<p>
<span class="fw-bold">Contras:</span> o usuário poderá acessar recursos até a expiração
do <em>token</em>
</p>
</div>
</section>
<section>
<header>
<h1>Recomendações</h1>
<h2>Em Microsserviços</h2>
</header>
<ul>
<li>
Sempre valide o <em>token</em> em seu <kbd>API Gateway</kbd> primeiro
<ul>
<li>
Se houver um erro, você nem precisará encaminhar a requisição para seus
microsserviços
</li>
</ul>
</li>
<li>Cada microsserviço deve fazer sua própria validação das <em>claims</em></li>
</ul>
</section>
<section>
<header>
<h1>Recomendações</h1>
<h2>Validação</h2>
</header>
<p>Ao receber um <em>token</em>, certifique-se de validar...</p>
<ul>
<li class="fragment">
O algoritmo (e que não está permitindo <code>none</code>)
</li>
<li class="fragment">
As <em>claims</em> esperadas (<code>iss</code>, <code>aud</code>,
<code>sub</code> e outros campos)
</li>
<li class="fragment">
Se o <em>token</em> é válido (<code>nbf</code> e <code>exp</code>)
</li>
<li class="fragment">
Se o <em>token</em> não está revogado (consultar <em>denylist</em>)
</li>
</ul>
</section>
<section>
<header>
<h1>Recomendações</h1>
<h2>Outras dicas</h2>
</header>
<ul class="margin-sm">
<li>Não coloque <em>informações sensíveis</em> em <kbd>JWS</kbd></li>
<li>Não coloque <em>informações extremamente sensíveis</em> em <kbd>JWE</kbd></li>
<li>
Não coloque informações demais, pois além de poder gerar um erro <code>413 Entity Too
Large</code> em alguns servidores, isso poderá consumir muita CPU e inclusive ser um
vetor de ataques DoS
</li>
<li>Evite colocar dados sequenciais (como <code>id</code>) em JWS</li>
</ul>
</section>
</section> <!-- Recomendações -->
<section> <!-- Materiais -->
<section>
<h1>Materiais</h1>
</section>
<section>
<header>
<h1>Materiais</h1>
<h2>RFCs</h2>
</header>
<ul class="margin font-size-sm">
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7165" target="_blank" rel="noopener">
RFC 7165: Use Cases and Requirements for JOSE
</a>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7515" target="_blank" rel="noopener">
RFC 7515: JSON Web Signature (JWS)
</a>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7516" target="_blank" rel="noopener">
RFC 7516: JSON Web Encryption (JWE)
</a>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7517" target="_blank" rel="noopener">
RFC 7517: JSON Web Key (JWK)
</a>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc7518" target="_blank" rel="noopener">
RFC 7518: JSON Web Algorithms (JWA)
</a>
</li>