-
Notifications
You must be signed in to change notification settings - Fork 1
/
draft-perrin-tls-tack-01.xml
900 lines (656 loc) · 28.5 KB
/
draft-perrin-tls-tack-01.xml
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
<?xml version="1.0"?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd" []>
<?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
<?rfc toc="yes" ?>
<?rfc symrefs="yes" ?>
<rfc ipr="trust200902" docName="draft-perrin-tls-tack-01.txt" category="std">
<front>
<title>Trust Assertions for Certificate Keys</title>
<author initials='M.M.' surname="Marlinspike" fullname='Moxie Marlinspike'>
<organization/>
</author>
<author initials='T.P.' surname="Perrin" fullname='Trevor Perrin'
role="editor">
<organization/>
<address><email>[email protected]</email></address>
</author>
<date/>
<area>Security</area>
<workgroup>TLS Working Group</workgroup>
<abstract>
<t>
This document defines TACK, a TLS Extension that enables a TLS server to
assert the authenticity of its public key. A "tack" contains a "TACK key"
which is used to sign the public key from the TLS server's certificate.
Hostnames can be "pinned" to a TACK key. TLS connections to a pinned
hostname require the server to present a tack containing the pinned key
and a corresponding signature over the TLS server's public key.
</t>
</abstract>
</front>
<middle>
<section anchor="intro" title="Introduction">
<t>
Traditionally, a TLS client verifies a TLS server's public key using a
certificate chain issued by some public CA. "Pinning" is a way for clients to
obtain increased certainty in server public keys. Clients that employ pinning
check for some constant "pinned" element of the TLS connection when
contacting a particular TLS host.
</t> <t>
Unfortunately, a number of problems arise when attempting to pin certificate
chains: the TLS servers at a given hostname may have different certificate
chains simultaneously deployed and may change their chains at any time, the
"more constant" elements of a chain (the CAs) may not be trustworthy, and the
client may be oblivious to key compromise events which render the pinned data
untrustworthy.
</t>
<t>
TACK addresses these problems by having the site sign its TLS server public
keys with a "TACK key". This enables clients to "pin" a hostname to the TACK
key without requiring sites to modify their existing certificate chains, and
without limiting a site's flexibility to deploy different certificate chains
on different servers or change certificate chains at any time. Since TACK pins
are based on TACK keys (instead of CA keys), trust in CAs is not required.
Additionally, the TACK key may be used to revoke compromised TLS private keys,
and TACK key rollovers may be performed to recover from suspect or compromised
TACK keys.
</t>
<t>
If requested, a compliant server will send a TLS Extension containing its
"tack". Inside the tack is a public key and signature. Once a client has seen
the same (hostname, TACK public key) pair multiple times, the client will
"activate" a pin between the hostname and TACK key for a period equal to the
length of time the pair has been observed for. This "pin activation" algorithm
limits the impact of bad pins resulting from transient network attacks or
operator error.
</t>
<t>
TACK pins are easily shared between clients. For example, a TACK client may
scan the internet to discover TACK pins, then publish these pins through some
3rd-party trust infrastructure for other clients to rely upon.
</t>
</section>
<section title="Requirements notation"> <t>The key words "MUST",
"MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT",
"RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as
described in <xref target="RFC2119"/>.</t>
</section>
<section title="Overview">
<section title="Tack life cycle">
<t>A server operator using TACK may perform several processes:
<list style="hanging">
<t hangText="Selection of a TACK key:">
The server operator first chooses the ECDSA signing key to use for a set of
hostnames. It is safest to use a different signing key for each hostname,
though a signing key may be reused for closely-related hostnames (such as
aliases for the same host, or hosts sharing the same TLS key).
</t>
<t hangText="Creating initial tacks under a TACK key:">
The TACK private key is then used to sign the TLS public keys for all servers
associated with those hostnames. The TACK public key and signature are
combined with some metadata into each server's "tack".
</t>
<t hangText="Deploying initial tacks:">
For each hostname, tacks are deployed to TLS servers in a two-stage process.
First, each TLS server associated with the hostname is given a tack. Once this
is completed, the tacks are activated by setting the "activation flag" on each
server.
</t>
<t hangText="Creating new tacks under a TACK key:">
A tack needs to be replaced whenever a server changes its TLS public key, or
when the tack expires. Tacks may also need to be replaced with
later-generation tacks if the TACK key's "min_generation" is updated (see
next).
</t>
<t hangText="Revoking old tacks:">
If a TLS private key is compromised, the tacks signing this key can be revoked
by publishing a new tack containing a higher "min_generation".
</t>
<t hangText="Deactivating tacks:">
If a server operator wishes to stop deploying tacks, all tacks for a hostname
can be deactivated via the activation flag, allowing the server to remove the
tacks within 30 days (at most).
</t>
<t hangText="Rollover:">
If a server operator wishes to change the TACK key a hostname is pinned to,
the server can publish a new tack alongside the old one. This lets clients
activate pins for the new TACK key prior to the server deactivating the older
pins.
</t>
</list>
<vspace blankLines="100" />
</t>
</section>
<section title="Pin life cycle">
<t>
A TACK pin associates a hostname and a TACK key. Pins are grouped into "pin
stores". A client may populate its pin stores by either performing "pin
activation" directly, or by querying some other party. For example, a client
application may have a store for pin activation as well as a store whose
contents are periodically fetched from a server. </t>
<t>
Whenever a client performing "pin activation" sees a hostname and TACK key
combination not represented in the "pin activation" pin store, an inactive pin
is created. Every subsequent time the client sees the same pin, the pin is
"activated" for a period equal to the timespan between the first time the pin
was seen and the most recent time, up to a maximum period of 30 days.
</t>
<t>
A pin store may contain up to two pins per hostname. This allows for "pin
rollover", where a server securely transitions from one pin to another. If
both pins are simultaneously active, then the server must satisfy both of them
by presenting a pair of tacks.
</t>
<t>In addition to creating and activating pins, a TLS connection can alter
client pin stores by publishing new "min_generation" values in a tack. Each
pin stores the highest "min_generation" value it has seen from the pinned TACK
key, and rejects tacks from earlier generations.
</t>
</section>
</section>
<section title="TACK Extension">
<section title="Definition of TackExtension">
<t>
A new TLS ExtensionType ("tack") is defined and MAY be included by a TLS
client in the ClientHello message defined in <xref target="RFC5246"/>.
</t>
<figure><artwork>
enum {tack(TBD), (65535)} ExtensionType;
</artwork></figure>
<t>
The "extension_data" field of this ClientHello extension SHALL be empty. A TLS
server which is not resuming a TLS session MAY respond with an extension of
type "tack" in the ServerHello. The "extension_data" field of this
ServerHello extension SHALL contain a "TackExtension", as defined below using
the TLS presentation language from <xref target="RFC5246"/>.
</t>
<figure><artwork>
struct {
opaque public_key[64];
uint8 min_generation;
uint8 generation;
uint32 expiration;
opaque target_hash[32];
opaque signature[64];
} Tack; /* 166 bytes */
struct {
Tack tacks<166...332> /* 1 or 2 Tacks */
uint8 activation_flags; /* 0...3 */
} TackExtension;
</artwork>
</figure>
<t>
<vspace blankLines="100" />
</t>
</section>
<section title="Explanation of TackExtension fields">
<section title="Tack fields">
<t>
<list style="hanging">
<t hangText="public_key:">
This field specifies the tack's public key. The field contains a pair of
integers (x, y) representing a point on the elliptic curve P-256 defined in
<xref target="FIPS186-3"/>. Each integer is encoded as a 32-byte octet string
using the Integer-to-Octet-String algorithm from <xref target="RFC6090"/>, and
these strings are concatenated with the x value first. (NOTE: This is
equivalent to an uncompressed subjectPublicKey from <xref target="RFC5480"/>,
except that the initial 0x04 byte is omitted).
</t>
<t hangText="min_generation:">
This field publishes a min_generation value.
</t>
<t hangText="generation:">
This field assigns each tack a generation. Generations less than a published
min_generation are considered revoked.
</t>
<t hangText="expiration:">
This field specifies a time after which the tack is considered expired. The
time is encoded as the number of minutes, excluding leap seconds, after
midnight UTC, January 1 1970. </t>
<t hangText="target_hash:">
This field is a hash of the TLS server's SubjectPublicKeyInfo <xref
target="RFC5280"/> using the SHA256 algorithm from <xref target="FIPS180-2"/>.
The SubjectPublicKeyInfo is typically conveyed as part of the server's X.509
certificate.
</t>
<t hangText="signature:">
This field is an ECDSA signature by the tack's public key over the 8 byte
ASCII string "tack_sig" followed by the contents of the tack prior to the
"signature" field (i.e. the preceding 102 bytes). The field contains a pair of
integers (r, s) representing an ECDSA signature as defined in <xref
target="FIPS186-3"/>, using curve P-256 and SHA256. Each integer is encoded as
a 32-byte octet string using the Integer-to-Octet-String algorithm from <xref
target="RFC6090"/>, and these strings are concatenated with the r value first.
</t>
</list>
</t>
</section>
<section title="TackExtension fields">
<t>
<list style="hanging">
<t hangText="tacks:">
This field provides the server's tack(s). It SHALL contain 1 or 2 tacks. </t>
<t hangText="activation_flags:">
This field contains "activation flags" for the extension's tacks. If the low
order bit is set, the first tack is considered active. If the next lowest bit
is set, the second tack is considered active. An active tack MAY be used by
the pin activation algorithm in <xref target="creating"/> to create, activate,
and extend the activation of TACK pins.
</t> </list> </t>
</section>
</section>
</section>
<section title="Client processing" anchor="clientproc">
<section title="TACK pins">
<t>
A client SHALL have a local store of pins, and MAY have multiple stores. Each
pin store consists of a map associating fully qualified DNS hostnames with
either one or two sets of the following values:
<list style="hanging">
<t hangText="Initial time:">
A timestamp noting when this pin was created.
</t>
<t hangText="End time:">
A timestamp determining the pin's "active period". If set to zero or a
time in the past, the pin is "inactive". If set to a future time, the pin is
"active" until that time.
</t>
<t hangText="TACK public key (or hash):">
A public key or a cryptographically-secure, second preimage-resistant hash of
a public key.
</t>
<t hangText="Min_generation:">
A single byte used to detect revoked tacks. All pins within a pin store
sharing the same TACK public key SHALL have the same min_generation.
</t>
</list>
</t>
<t>
A hostname along with the above values comprises a "TACK pin". Thus, each
store can hold up to two pins for a hostname (however, those two pins MUST
reference different public keys). A pin "matches" a tack if they reference the
same public key. A pin is "relevant" if its hostname equals the TLS server's
hostname.
</t>
</section>
<section title="High-level client processing">
<t>
A TACK client SHALL send the "tack" extension defined previously, and SHALL
send the "server_name" extension from <xref target="RFC6066"/>. If not
resuming a session, the server MAY respond with a TackExtension. Regardless of
whether a TackExtension is returned, the client SHALL perform the following
steps prior to using the connection:
<list style="numbers">
<t>Check whether the TLS handshake is "well-formed".</t>
<t>For each pin store, do:
<list style="letters">
<t>Check tack generations and update min_generations.</t>
<t>Determine the store's status.</t>
<t>Perform pin activation (optional).</t>
</list>
<vspace blankLines="100" />
</t>
</list>
These steps SHALL be performed in order. If there is any error, the client
SHALL send a fatal error alert and close the connection, skipping the
remaining steps (see <xref target="details"/> for details).
</t>
<t>Based on step 2B, each store will report one of three statuses for the
connection: "accepted", "rejected", or "unpinned". A rejected connection might
indicate a network attack. If the connection is rejected the client SHOULD
send a fatal "access_denied" error alert and close the connection. </t>
<t> A client MAY perform additional verification steps before using an
accepted or unpinned connection. See <xref target="certver"/> for an
example.</t>
</section> <section title="Client processing details" anchor="details">
<section title="Check whether the TLS handshake is well-formed"
anchor="wellformed">
<t>
A TLS handshake is "well-formed" if the following are true. Unless otherwise
specified, if any of the following are false a "bad_certificate" fatal error
alert SHALL be sent.
<list style="numbers">
<t>The handshake protocol negotiates a cryptographically secure ciphersuite
and finishes succesfully.</t>
<t>If a TackExtension is present then all length fields are correct,
"activation_flags" is <= 3, and the tacks are "well-formed" (see
below).</t>
<t>If there are two tacks, they have different "public_key" fields.</t>
</list>
</t>
<t>
A tack is "well-formed" if:
<list style="numbers">
<t>"generation" is >= "min_generation".</t>
<t>"expiration" specifies a time in the future, otherwise the client SHALL
send a fatal "certificate_expired" error alert.</t>
<t>"target_hash" is a correct hash of the SubjectPublicKeyInfo.</t>
<t>"signature" is a correct ECDSA signature.</t> </list> </t>
</section>
<section title="Check tack generations and update min_generations">
<t>If a tack has matching pins in the pin store and a generation less than the
stored min_generation, then that tack is revoked and the client SHALL send a
fatal "certificate_revoked" error alert. If a tack has matching pins and a
min_generation greater than the stored min_generation, the stored value SHALL
be set to the tack's value.</t>
</section>
<section title="Determine the store's status"> <t>
If there is a relevant active pin without a matching tack, then the connection
is "rejected". If the connection is not rejected and there is a relevant
active pin with a matching tack, then the connection is "accepted". Otherwise,
the connection is "unpinned".
</t>
</section>
<section title="Pin activation (optional)" anchor="creating">
<t>
The TLS connection MAY be used to create, delete, and activate pins. This "pin
activation algorithm" is optional; a client MAY rely on an external source of
pins. If the connection was "rejected" by the previous processing step, then
pin activation is skipped.
</t>
<t>
The first step in pin activation is to evaluate each relevant pin (there may
be one or two): <list style="numbers">
<t>If a pin has no matching tack, its handling will depend on whether the pin
is active. If active, the connection will have been rejected, skipping pin
activation. If inactive, the pin SHALL be deleted, since it is contradicted by
the connection.</t>
<t>If a pin has a matching tack, its handling will depend on whether the tack
is active. If inactive, the pin is left unchanged. If active, the pin SHALL
have its "end time" set based on the current, initial, and end times:
<figure><artwork>
end = current + MIN(30 days, current - initial)
</artwork></figure> </t> </list> </t>
<t> In sum: (1) deletes unmatched pins, provided they are inactive; and (2)
activates matched pins, provided the matching tack is active. </t>
<t>The remaining step in pin activation is to add new inactive pins for any
unmatched active tacks. Each new pin uses the server's hostname, the tack's
public key and min_generation (unless the store has a higher min_generation
for the public key), an "initial time" set to the current time, and an "end
time" of zero.
</t>
<t> (Note that there are always sufficient empty "slots" in the pin store for
adding new pins without exceeding two pins per hostname. This is because the
number of matching pins equals the number of matching tacks, so the number of
empty pin slots equals the number of unmatched tacks.)
</t>
<t>The following tables summarize this behavior from the perspective of a pin.
You can follow the lifecycle of a single pin from "New inactive pin" to
"Delete pin".
</t>
<t>Relevant pin is active:</t>
<texttable>
<ttcol align='left'>Pin matches a tack</ttcol>
<ttcol align='left'>Tack is active</ttcol>
<ttcol align='left'>Result</ttcol>
<c>Yes</c>
<c>Yes</c>
<c>Extend activation period</c>
<c>Yes</c>
<c>No</c>
<c>-</c>
<c>No</c>
<c>-</c>
<c>(Connection rejected)</c>
</texttable>
<t>Relevant pin is inactive:</t>
<texttable>
<ttcol align='left'>Pin matches a tack</ttcol>
<ttcol align='left'>Tack is active</ttcol>
<ttcol align='left'>Result</ttcol>
<c>Yes</c>
<c>Yes</c>
<c>Activate pin</c>
<c>Yes</c>
<c>No</c>
<c>-</c>
<c>No</c>
<c>-</c>
<c>Delete pin</c>
</texttable>
<t>Tack doesn't match any relevant pin:</t>
<texttable>
<ttcol align='left'>Unmatched tack is active</ttcol>
<ttcol align='left'>Result</ttcol>
<c>Yes</c>
<c>New inactive pin</c>
<c>No</c>
<c>-</c>
</texttable>
</section>
</section>
</section>
<section title="Application protocols and TACK">
<section title="Pin scope">
<t> TACK pins are specific to a particular application protocol. In other
words, a pin for HTTPS at "example.com" implies nothing about POP3 or SMTP at
"example.com". </t>
</section>
<section title="TLS negotiation">
<t>Some application protocols negotiate TLS as an optional feature (e.g. SMTP
using STARTTLS <xref target="RFC3207"/>). If such a server fails to negotiate
TLS and there are relevant active pins, then the connection is rejected by the
pin. If the server fails to negotiate TLS, then any relevant, inactive pins
SHALL be deleted. Note that these steps are taken despite the absence of a TLS
connection.</t>
</section>
<section title="Certificate verification" anchor="certver">
<t>
A TACK client MAY choose to perform some form of certificate verification in
addition to TACK processing. When combining certificate verification and TACK
processing, the TACK processing described in <xref target="clientproc"/> SHALL
be followed, with the exception that TACK processing MAY be terminated early
(or skipped) if some fatal certificate error is discovered.
</t>
<t>
If TACK processing and certificate verification both complete without a fatal
error, the client SHALL apply some policy to decide whether to accept the
connection. The policy is up to the client. An example policy would be to
accept the connection only if it passes certificate verification and is not
rejected by a pin.
</t>
</section>
</section>
<section title="Fingerprints">
<t>
A "key fingerprint" may be used to represent a TACK public key to users in a
form that is easy to compare and transcribe. A key fingerprint consists of the
first 25 characters from the base32 encoding of SHA256(public_key), split into
5 groups of 5 characters separated by periods. Base32 encoding is as specified
in <xref target="RFC4648"/>, except lowercase is used. Examples:
</t>
<t>
<list>
<t>g5p5x.ov4vi.dgsjv.wxctt.c5iul</t>
<t>quxiz.kpldu.uuedc.j5znm.7mqst</t>
<t>e25zs.cth7k.tscmp.5hxdp.wf47j</t>
</list>
</t>
</section>
<section title="Advice">
<section title="For server operators" anchor="servadvice">
<t>
<list style="hanging">
<t hangText="Key reuse:">
All servers that are pinned to a single TACK key are able to impersonate each
other, since clients will perceive their tacks as equivalent. Thus, TACK keys
SHOULD NOT be reused with different hostnames unless these hostnames are
closely related. Examples where it would be safe to reuse a TACK key are
hostnames aliased to the same host, hosts sharing the same TLS key, or
hostnames for a group of near-identical servers.
</t>
<t hangText="Aliases:">
A TLS server may be referenced by multiple hostnames. Clients may pin any of
these hostnames. Server operators should be careful when using DNS aliases
that hostnames are not pinned inadvertently.
</t>
<t hangText="Generations:">
To revoke older generations of tacks, the server operator SHOULD first provide
all servers with a new generation of tacks, and only then provide servers with
new tacks containing the new min_generation. Otherwise, a client may receive a
min_generation update from one server but then try to contact an
older-generation server which has not yet been updated.</t>
<t hangText="Tack expiration:">
When TACK is used in conjunction with certificates it is recommended to set
the tack expiration equal to the end-entity certificate expiration plus 30
days, allowing the tack and certificate to both be replaced at the same time.
The extra 30 days ensures there is enough time to employ "pin deactivation"
(see below) if the TACK private key is lost. Alternatively, short-lived tacks
may be used so that a compromised TLS private key has limited value to an
attacker.</t>
<t hangText="Tack/pin activation:">
Tacks should only be activated once all TLS servers sharing the same hostname
have a tack. Otherwise, a client may activate a pin by contacting one server,
then contact a different server at the same hostname that does not yet have a
tack. </t>
<t hangText="Tack/pin deactivation:">If all servers at a hostname deactivate
their tacks (by clearing the activation flags), all existing pins for the
hostname will eventually become inactive. The tacks can be removed after a
time interval equal to the maximum active period of any affected pins (30 days
at most).
</t>
<t hangText="Pin rollover:">When performing a rollover, the old and new tacks
SHOULD be published simultaneously for at least 60 days. This ensures that a
pin activation client who is contacting the server at least once every 30 days
will not have the length of its activation periods affected by the transition.
Example rollover process: Add new tacks; activate new tacks; wait 30+ days;
deactivate old tacks; wait 30+ days; remove old tacks. </t>
</list>
</t>
</section>
<section title="For client implementers">
<t>
<list style="hanging">
<t hangText="Sharing pin information:">
It is possible for a client to maintain a pin store based entirely on its own
TLS connections. However, such a client runs the risk of creating incorrect
pins, failing to keep its pins active, or failing to receive min_generation
updates. Clients are advised to make use of 3rd-party trust infrastructure so
that pin data can be aggregated and shared. This will require additional
protocols outside the scope of this document.
</t> <t hangText="Clock synchronization:">
A client SHOULD take measures to prevent tacks from being erroneously rejected
as expired due to an inaccurate client clock. Such methods MAY include using
time synchronization protocols such as NTP <xref target="RFC5905"/>, or
accepting seemingly-expired tacks as "well-formed" if they expired less than T
minutes ago, where T is a "tolerance bound" set to the client's maximum
expected clock error.
</t>
</list>
</t>
</section>
</section>
<section title="Security considerations" anchor="security">
<section title="For server operators">
<t>
All servers pinned to the same TACK key can impersonate each other (see <xref
target="servadvice"/>). Think carefully about this risk if using the same TACK
key for multiple hostnames.
</t> <t>
Make backup copies of the TACK private key and keep all copies in secure
locations where they can't be compromised.
</t>
<t>
A TACK private key MUST NOT be used to perform any non-TACK cryptographic
operations. For example, using a TACK key for email encryption, code-signing,
or any other purpose MUST NOT be done.
</t> <t>
HTTP cookies <xref target="RFC6265"/> set by a pinned host can be stolen by a
network attacker who can forge web and DNS responses so as to cause a client
to send the cookies to a phony subdomain of the pinned host. To prevent this,
TACK HTTPS Servers SHOULD set the "secure" attribute and omit the "domain"
attribute on all security-sensitive cookies, such as session cookies. These
settings tell the browser that the cookie should only be presented back to the
originating host (not its subdomains), and should only be sent over HTTPS (not
HTTP) <xref target="RFC6265"/>.
</t>
</section>
<section title="For client implementers" anchor="security_client">
<t>
A TACK pin store may contain private details of the client's connection
history. An attacker may be able to access this information by hacking or
stealing the client. Some information about the client's connection history
could also be gleaned by observing whether the client accepts or rejects
connections to phony TLS servers without correct tacks. To mitigate these
risks, a TACK client SHOULD allow the user to edit or clear the pin store.
</t>
<t>
Aside from rejecting TLS connections, clients SHOULD NOT take any actions
which would reveal to a network observer the state of the client's pin store,
as this would allow an attacker to know in advance whether a
"man-in-the-middle" attack on a particular TLS connection will succeed or be
detected.
</t>
<t>
An attacker may attempt to flood a client with spurious tacks for different
hostnames, causing the client to delete old pins to make space for new ones.
To defend against this, clients SHOULD NOT delete active pins to make space
for new pins. Clients instead SHOULD delete inactive pins. If there are no
inactive pins to delete, then the pin store is full and there is no space for
new pins. To select an inactive pin for deletion, the client SHOULD delete the
pin with the oldest "end time".
</t>
</section>
<section title="Note on algorithm agility" anchor="future">
<t>
If the need arises for tacks using different cryptographic algorithms (e.g.,
if SHA256 or ECDSA are shown to be weak), a "v2" version of tacks could be
defined, requiring assignment of a new TLS Extension number. Tacks as defined
in this document would then be known as "v1" tacks.
</t>
</section>
</section>
<section title="IANA considerations">
<section title="New entry for the TLS ExtensionType Registry">
<t>
IANA is requested to add an entry to the existing TLS ExtensionType registry,
defined in <xref target="RFC5246"/>, for "tack"(TBD) as defined in this
document.
</t>
</section>
</section>
<section title="Acknowledgements">
<t>
Valuable feedback has been provided by Adam Langley, Chris Palmer, Nate
Lawson, and Joseph Bonneau.
</t> </section>
</middle>
<back>
<references title='Normative references'>
<reference
anchor="FIPS180-2"
target="http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf">
<front>
<title>Secure Hash Standard</title>
<author>
<organization>National Institute of Standards and Technology</organization>
</author>
<date month="August" year="2002" />
</front>
<seriesInfo name="FIPS" value="PUB 180-2" />
</reference>
<reference
anchor="FIPS186-3"
target="http://csrc.nist.gov/publications/fips/fips186-3/fips_186-3.pdf">
<front>
<title>Digital Signature Standard</title>
<author>
<organization>National Institute of Standards and Technology</organization>
</author>
<date month="June" year="2009" />
</front>
<seriesInfo name="FIPS" value="PUB 186-3" />
</reference>
<?rfc include="bib/reference.RFC.2119.xml"?>
<?rfc include="bib/reference.RFC.3207.xml"?>
<?rfc include="bib/reference.RFC.4648.xml"?>
<?rfc include="bib/reference.RFC.5246.xml"?>
<?rfc include="bib/reference.RFC.5280.xml"?>
<?rfc include="bib/reference.RFC.5480.xml"?>
<?rfc include="bib/reference.RFC.5905.xml"?>
<?rfc include="bib/reference.RFC.6066.xml"?>
<?rfc include="bib/reference.RFC.6090.xml"?>
<?rfc include="bib/reference.RFC.6265.xml"?>
</references>
</back>
</rfc>