summaryrefslogtreecommitdiff
path: root/1b/5b046147c9cffd92bbe12ab4c1a190fe5fd82e
blob: dbd81fbfdf440e2ebd42b6e391dcffcb0c54d695 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
Return-Path: <antoine.riard@gmail.com>
Received: from smtp1.osuosl.org (smtp1.osuosl.org [140.211.166.138])
 by lists.linuxfoundation.org (Postfix) with ESMTP id A4B0DC0032;
 Wed, 18 Oct 2023 02:57:50 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp1.osuosl.org (Postfix) with ESMTP id 6C7FF82237;
 Wed, 18 Oct 2023 02:57:50 +0000 (UTC)
DKIM-Filter: OpenDKIM Filter v2.11.0 smtp1.osuosl.org 6C7FF82237
Authentication-Results: smtp1.osuosl.org;
 dkim=pass (2048-bit key) header.d=gmail.com header.i=@gmail.com
 header.a=rsa-sha256 header.s=20230601 header.b=G7Crjs/7
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001,
 HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from smtp1.osuosl.org ([127.0.0.1])
 by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id fLGcNzkBefHI; Wed, 18 Oct 2023 02:57:47 +0000 (UTC)
Received: from mail-oi1-x233.google.com (mail-oi1-x233.google.com
 [IPv6:2607:f8b0:4864:20::233])
 by smtp1.osuosl.org (Postfix) with ESMTPS id 7CC4182236;
 Wed, 18 Oct 2023 02:57:47 +0000 (UTC)
DKIM-Filter: OpenDKIM Filter v2.11.0 smtp1.osuosl.org 7CC4182236
Received: by mail-oi1-x233.google.com with SMTP id
 5614622812f47-3b2df2fb611so674573b6e.0; 
 Tue, 17 Oct 2023 19:57:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=gmail.com; s=20230601; t=1697597866; x=1698202666;
 darn=lists.linuxfoundation.org; 
 h=cc:to:subject:message-id:date:from:in-reply-to:references
 :mime-version:from:to:cc:subject:date:message-id:reply-to;
 bh=65P51g2tPBeFPJ1rj/+QrDEu0HvGXKuD0iFrrhHCqFY=;
 b=G7Crjs/7Z8uIcUE7KgxhqnN7+pVC+q3T4L/Q5Zsn3I+aaStR9WRR5xeNmFQCRga4PU
 TLqDrmwWHUsI29M0v7I07V8Tv0ldeRRHiP6ko1isoUN0Z5sQs4h3+tvYbjvMN5mIg2sU
 TU7C4hgJj7wwbiel7DMI2QdJEWwLznxVeGg3BbDjhw9b+FSXzNjClXCsrFm/y1zy6lVe
 158qLelYm8RFrV53SCdj9mm6+mH8mAL92jmijpx62I1ax5mm+bOiGXGuMAnLrdu3DWQz
 XhnnuGvxosIj6Gh9FXAzAzFja/YgVoPPhA3hGEzSYKe1zXs1XRDpFFXPbZQo9fhdWoKd
 xEgg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20230601; t=1697597866; x=1698202666;
 h=cc:to:subject:message-id:date:from:in-reply-to:references
 :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id
 :reply-to;
 bh=65P51g2tPBeFPJ1rj/+QrDEu0HvGXKuD0iFrrhHCqFY=;
 b=B71NP72ixHZQ5xVPoMozDc4/uvp10v+Fb+0ttfVd/MYfwsijC9lyXN6Fil/8JfzFtf
 VnM96/kIkmvoavvRj40xtzKPdlz3mvMnys/5I+X6WkcR+TS0mi9P23utTzYhpscSC0KI
 0Ow07oaEYrkQbrpcEuUbh4Him603Z1GUVQ+vGqTq0EIDc6AdOXZrSiTfpSac4fhYlGuq
 HCyGwS30rlpqws9ZS4xjZC0MozxogJq44TqGVoG2diKVub8155TTvyNDdjK6n3PTSnZj
 +AzbmI83/wd9hJG5TtH2zO8852XvxLNDCAm5LH6UYHmgkd7pzpshmrIprVXSymGrDvOP
 uE9w==
X-Gm-Message-State: AOJu0YxqavbafEptaF4kRL8wk4Xrl9BpcDFYX/iMaAE58mQrCrBDUs8Z
 9/bpZ9ym1sZvCtvPIiBvn13XkCC4LOHFHqwftKusTJRl6s8=
X-Google-Smtp-Source: AGHT+IGoSEkwiyd9qg9Se+40UfKiuFz1XpJWmsk4914PbUv0PvGMpj4hy737033Hp+PCns9KqX5q4KtuvyKJX7JCiWw=
X-Received: by 2002:a05:6808:3009:b0:3a7:6d64:aa68 with SMTP id
 ay9-20020a056808300900b003a76d64aa68mr5238802oib.18.1697597866183; Tue, 17
 Oct 2023 19:57:46 -0700 (PDT)
MIME-Version: 1.0
References: <CALZpt+GdyfDotdhrrVkjTALg5DbxJyiS8ruO2S7Ggmi9Ra5B9g@mail.gmail.com>
 <ece6f28b-5b14-4f9c-a115-945082a63d68@mattcorallo.com>
In-Reply-To: <ece6f28b-5b14-4f9c-a115-945082a63d68@mattcorallo.com>
From: Antoine Riard <antoine.riard@gmail.com>
Date: Wed, 18 Oct 2023 03:57:34 +0100
Message-ID: <CALZpt+FSn6ox9cnDVuWX0pjR-R_mxQCRTORR_XiPDEOVkx9YsA@mail.gmail.com>
To: Matt Corallo <lf-lists@mattcorallo.com>
Content-Type: multipart/alternative; boundary="000000000000c911890607f4cdcb"
X-Mailman-Approved-At: Wed, 18 Oct 2023 09:07:17 +0000
Cc: Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>,
 security@ariard.me, "lightning-dev\\\\@lists.linuxfoundation.org"
 <lightning-dev@lists.linuxfoundation.org>
Subject: Re: [bitcoin-dev] [Lightning-dev] Full Disclosure: CVE-2023-40231 /
 CVE-2023-40232 / CVE-2023-40233 / CVE-2023-40234 "All your mempool are
 belong to us"
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Wed, 18 Oct 2023 02:57:50 -0000

--000000000000c911890607f4cdcb
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

The disclosure mails noted a 3rd mitigation beyond mempool scanning and
transaction re-signing / re-broadcasting, namely bumping CLTV delta.

Generally bumping CLTV delta is a basic line of mitigations for a lot of
lightning attacks, as it gives opportunity to node operators to intervene
and re-broadcast their time-sensitive transactions on other interfaces (e.g
a secondary full-node if the first one is eclipsed).

About the second mitigation transaction re-signing, if done correctly at
least sounds to put an economic cost (denominated in fees / feerates) on
the attack. This is unclear to me if the game-theory of this cost holds.

One thing which sounds to me making the attack harder is stratum v2
deployment, as you're increasing the number of miners which might do their
own block templates, and therefore the number of miners' mempools where an
attacker has to successfully continuously replace in cycles channels
counterparties transactions.

A replacement buffer or history of transactions at the mempool level might
be a mitigation to this attack. I believe this is yet to be seen if it can
be made robust enough.

I don't know if folks like tadge or rusty who have been involved in the
early design of lightning have more ideas of mitigations. Fees was noted as
a hard issue in the original paper.

Le mer. 18 oct. 2023 =C3=A0 01:17, Matt Corallo <lf-lists@mattcorallo.com> =
a
=C3=A9crit :

> There appears to be some confusion about this issue and the mitigations.
> To be clear, the deployed
> mitigations are not expected to fix this issue, its arguable if they
> provide anything more than a PR
> statement.
>
> There are two discussed mitigations here - mempool scanning and
> transaction re-signing/re-broadcasting.
>
> Mempool scanning relies on regularly checking the mempool of a local node
> to see if we can catch the
> replacement cycle mid-cycle. It only works if wee see the first
> transaction before the second
> transaction replaces it.
>
> Today, a large majority of lightning nodes run on machines with a Bitcoin
> node on the same IP
> address, making it very clear what the "local node" of the lightning node
> is. An attacker can
> trivially use this information to connect to said local node and do the
> replacement quickly,
> preventing the victim from seeing the replacement.
>
> More generally, however, similar discoverability is true for mining pools=
.
> An attacker performing
> this attack is likely to do the replacement attack on a miner's node
> directly, potentially reducing
> the reach of the intermediate transaction to only miners, such that the
> victim can never discover it
> at all.
>
> The second mitigation is similarly pathetic. Re-signing and
> re-broadcasting the victim's transaction
> in an attempt to get it to miners even if its been removed may work, if
> the attacker is super lazy
> and didn't finish writing their attack system. If the attacker is
> connected to a large majority of
> hashrate (which has historically been fairly doable), they can simply do
> their replacement in a
> cycle aggressively and arbitrarily reduce the probability that the
> victim's transaction gets confirmed.
>
> Now, the above is all true in a spherical cow kinda world, and the P2P
> network has plenty of slow
> nodes and strange behavior. Its possible that these mitigations might, by
> some stroke of luck,
> happen to catch such an attack and prevent it, because something took
> longer than the attacker
> intended or whatever. But, that's a far cry from any kind of material
> "fix" for the issue.
>
> Ultimately the only fix for this issue will be when miners keep a history
> of transactions they've
> seen and try them again after they may be able to enter the mempool
> because of an attack like this.
>
> Matt
>
> On 10/16/23 12:57 PM, Antoine Riard wrote:
> > (cross-posting mempool issues identified are exposing lightning chan to
> loss of funds risks, other
> > multi-party bitcoin apps might be affected)
> >
> > Hi,
> >
> > End of last year (December 2022), amid technical discussions on eltoo
> payment channels and
> > incentives compatibility of the mempool anti-DoS rules, a new
> transaction-relay jamming attack
> > affecting lightning channels was discovered.
> >
> > After careful analysis, it turns out this attack is practical and
> immediately exposed lightning
> > routing hops carrying HTLC traffic to loss of funds security risks, bot=
h
> legacy and anchor output
> > channels. A potential exploitation plausibly happening even without
> network mempools congestion.
> >
> > Mitigations have been designed, implemented and deployed by all major
> lightning implementations
> > during the last months.
> >
> > Please find attached the release numbers, where the mitigations should
> be present:
> > - LDK: v0.0.118 - CVE-2023 -40231
> > - Eclair: v0.9.0 - CVE-2023-40232
> > - LND: v.0.17.0-beta - CVE-2023-40233
> > - Core-Lightning: v.23.08.01 - CVE-2023-40234
> >
> > While neither replacement cycling attacks have been observed or reporte=
d
> in the wild since the last
> > ~10 months or experimented in real-world conditions on bitcoin mainet,
> functional test is available
> > exercising the affected lightning channel against bitcoin core mempool
> (26.0 release cycle).
> >
> > It is understood that a simple replacement cycling attack does not
> demand privileged capabilities
> > from an attacker (e.g no low-hashrate power) and only access to basic
> bitcoin and lightning
> > software. Yet I still think executing such an attack successfully
> requests a fair amount of bitcoin
> > technical know-how and decent preparation.
> >
> >  From my understanding of those issues, it is yet to be determined if
> the mitigations deployed are
> > robust enough in face of advanced replacement cycling attackers,
> especially ones able to combine
> > different classes of transaction-relay jamming such as pinnings or
> vetted with more privileged
> > capabilities.
> >
> > Please find a list of potential affected bitcoin applications in this
> full disclosure report using
> > bitcoin script timelocks or multi-party transactions, albeit no
> immediate security risk exposure as
> > severe as the ones affecting lightning has been identified. Only cursor=
y
> review of non-lightning
> > applications has been conducted so far.
> >
> > There is a paper published summarizing replacement cycling attacks on
> the lightning network:
> >
> https://github.com/ariard/mempool-research/blob/2023-10-replacement-paper=
/replacement-cycling.pdf
> > <
> https://github.com/ariard/mempool-research/blob/2023-10-replacement-paper=
/replacement-cycling.pdf
> >
> >
> >   ## Problem
> >
> > A lightning node allows HTLCs forwarding (in bolt3's parlance accepted
> HTLC on incoming link and
> > offered HTLC on outgoing link) should settle the outgoing state with
> either a success or timeout
> > before the incoming state timelock becomes final and an asymmetric
> defavorable settlement might
> > happen (cf "Flood & Loot: A Systematic Attack on The Lightning Network"
> section 2.3 for a classical
> > exposition of this lightning security property).
> >
> > Failure to satisfy this settlement requirement exposes a forwarding hop
> to a loss of fund risk where
> > the offered HTLC is spent by the outgoing link counterparty's
> HTLC-preimage and the accepted HTLC is
> > spent by the incoming link counterparty's HTLC-timeout.
> >
> > The specification mandates the incoming HTLC expiration timelock to be
> spaced out by an interval of
> > `cltv_expiry_delta` from the outgoing HTLC expiration timelock, this
> exact interval value being an
> > implementation and node policy setting. As a minimal value, the
> specification recommends 34 blocks
> > of interval. If the timelock expiration I of the inbound HTLC is equal
> to 100 from chain tip, the
> > timelock expiration O of the outbound HTLC must be equal to 66 blocks
> from chain tip, giving a
> > reasonable buffer of reaction to the lightning forwarding node.
> >
> > In the lack of cooperative off-chain settlement of the HTLC on the
> outgoing link negotiated with the
> > counterparty (either `update_fulfill_htlc` or `update_fail_htlc`) when =
O
> is reached, the lightning
> > node should broadcast its commitment transaction. Once the commitment i=
s
> confirmed (if anchor and
> > the 1 CSV encumbrance is present), the lightning node broadcasts and
> confirms its HTLC-timeout
> > before I height is reached.
> >
> > Here enter a replacement cycling attack. A malicious channel
> counterparty can broadcast its
> > HTLC-preimage transaction with a higher absolute fee and higher feerate
> than the honest HTLC-timeout
> > of the victim lightning node and triggers a replacement. Both for legac=
y
> and anchor output channels,
> > a HTLC-preimage on a counterparty commitment transaction is malleable,
> i.e additional inputs or
> > outputs can be added. The HTLC-preimage spends an unconfirmed and
> unrelated to the channel parent
> > transaction M and conflicts its child.
> >
> > As the HTLC-preimage spends an unconfirmed input that was already
> included in the unconfirmed and
> > unrelated child transaction (rule 2), pays an absolute higher fee of at
> least the sum paid by the
> > HTLC-timeout and child transaction (rule 3) and the HTLC-preimage
> feerate is greater than all
> > directly conflicting transactions (rule 6), the replacement is accepted=
.
> The honest HTLC-timeout is
> > evicted out of the mempool.
> >
> > In an ulterior move, the malicious counterparty can replace the parent
> transaction itself with
> > another candidate N satisfying the replacement rules, triggering the
> eviction of the malicious
> > HTLC-preimage from the mempool as it was a child of the parent T.
> >
> > There is no spending candidate of the offered HTLC output for the
> current block laying in network
> > mempools.
> >
> > This replacement cycling tricks can be repeated for each rebroadcast
> attempt of the HTLC-timeout by
> > the honest lightning node until expiration of the inbound HTLC timelock
> I. Once this height is
> > reached a HTLC-timeout is broadcast by the counterparty's on the
> incoming link in collusion with the
> > one on the outgoing link broadcasting its own HTLC-preimage.
> >
> > The honest Lightning node has been "double-spent" in its HTLC forwardin=
g.
> >
> > As a notable factor impacting the success of the attack, a lightning
> node's honest HTLC-timeout
> > might be included in the block template of the miner winning the block
> race and therefore realizes a
> > spent of the offered output. In practice, a replacement cycling attack
> might over-connect to miners'
> > mempools and public reachable nodes to succeed in a fast eviction of th=
e
> HTLC-timeout by its
> > HTLC-preimage. As this latter transaction can come with a better
> ancestor-score, it should be picked
> > up on the flight by economically competitive miners.
> >
> > A functional test exercising a simple replacement cycling of a HTLC
> transaction on bitcoin core
> > mempool is available:
> > https://github.com/ariard/bitcoin/commits/2023-test-mempool
> > <https://github.com/ariard/bitcoin/commits/2023-test-mempool>
> >
> > ## Deployed LN mitigations
> >
> > Aggressive rebroadcasting: As the replacement cycling attacker benefits
> from the HTLC-timeout being
> > usually broadcast by lightning nodes only once every block, or less the
> replacement cycling
> > malicious transactions paid only equal the sum of the absolute fees pai=
d
> by the HTLC, adjusted with
> > the replacement penalty. Rebroadcasting randomly and multiple times
> before the next block increases
> > the absolute fee cost for the attacker.
> >
> > Implemented and deployed by Eclair, Core-Lightning, LND and LDK .
> >
> > Local-mempool preimage monitoring: As the replacement cycling attacker
> in a simple setup broadcast
> > the HTLC-preimage to all the network mempools, the honest lightning nod=
e
> is able to catch on the
> > flight the unconfirmed HTLC-preimage, before its subsequent mempool
> replacement. The preimage can be
> > extracted from the second-stage HTLC-preimage and used to fetch the
> off-chain inbound HTLC with a
> > cooperative message or go on-chain with it to claim the accepted HTLC
> output.
> >
> > Implemented and deployed by Eclair and LND.
> >
> > CLTV Expiry Delta: With every jammed block comes an absolute fee cost
> paid by the attacker, a risk
> > of the HTLC-preimage being detected or discovered by the honest
> lightning node, or the HTLC-timeout
> > to slip in a winning block template. Bumping the default CLTV delta
> hardens the odds of success of a
> > simple replacement cycling attack.
> >
> > Default setting: Eclair 144, Core-Lightning 34, LND 80 and LDK 72.
> >
> > ## Affected Bitcoin Protocols and Applications
> >
> >  From my understanding the following list of Bitcoin protocols and
> applications could be affected by
> > new denial-of-service vectors under some level of network mempools
> congestion. Neither tests or
> > advanced review of specifications (when available) has been conducted
> for each of them:
> > - on-chain DLCs
> > - coinjoins
> > - payjoins
> > - wallets with time-sensitive paths
> > - peerswap and submarine swaps
> > - batch payouts
> > - transaction "accelerators"
> >
> > Inviting their developers, maintainers and operators to investigate how
> replacement cycling attacks
> > might disrupt their in-mempool chain of transactions, or fee-bumping
> flows at the shortest delay.
> > Simple flows and non-multi-party transactions should not be affected to
> the best of my understanding.
> >
> > ## Open Problems: Package Malleability
> >
> > Pinning attacks have been known for years as a practical vector to
> compromise lightning channels
> > funds safety, under different scenarios (cf. current bip331's motivatio=
n
> section). Mitigations at
> > the mempool level have been designed, discussed and are under
> implementation by the community
> > (ancestor package relay + nverrsion=3D3 policy). Ideally, they should
> constraint a pinning attacker to
> > always attach a high feerate package (commitment + CPFP) to replace the
> honest package, or allow a
> > honest lightning node to overbid a malicious pinning package and get it=
s
> time-sensitive transaction
> > optimistically included in the chain.
> >
> > Replacement cycling attack seem to offer a new way to neutralize the
> design goals of package relay
> > and its companion nversion=3D3 policy, where an attacker package RBF a
> honest package out of the
> > mempool to subsequently double-spend its own high-fee child with a
> transaction unrelated to the
> > channel. As the remaining commitment transaction is pre-signed with a
> minimal relay fee, it can be
> > evicted out of the mempool.
> >
> > A functional test exercising a simple replacement cycling of a lightnin=
g
> channel commitment
> > transaction on top of the nversion=3D3 code branch is available:
> > https://github.com/ariard/bitcoin/commits/2023-10-test-mempool-2
> > <https://github.com/ariard/bitcoin/commits/2023-10-test-mempool-2>
> >
> > ## Discovery
> >
> > In 2018, the issue of static fees for pre-signed lightning transactions
> is made more widely known,
> > the carve-out exemption in mempool rules to mitigate in-mempool package
> limits pinning and the
> > anchor output pattern are proposed.
> >
> > In 2019, bitcoin core 0.19 is released with carve-out support. Continue=
d
> discussion of the anchor
> > output pattern as a dynamic fee-bumping method.
> >
> > In 2020, draft of anchor output submitted to the bolts. Initial finding
> of economic pinning against
> > lightning commitment and second-stage HTLC transactions. Subsequent
> discussions of a
> > preimage-overlay network or package-relay as mitigations. Public call
> made to inquiry more on
> > potential other transaction-relay jamming attacks affecting lightning.
> >
> > In 2021, initial work in bitcoin core 22.0 of package acceptance.
> Continued discussion of the
> > pinning attacks and shortcomings of current mempool rules during
> community-wide online workshops.
> > Later the year, in light of all issues for bitcoin second-layers, a
> proposal is made about killing
> > the mempool.
> >
> > In 2022, bip proposed for package relay and new proposed v3 policy
> design proposed for a review and
> > implementation. Mempoolfullrbf is supported in bitcoin core 24.0 and
> conceptual questions about
> > alignment of mempool rules w.r.t miners incentives are investigated.
> >
> > Along this year 2022, eltoo lightning channels design are discussed,
> implemented and reviewed. In
> > this context and after discussions on mempool anti-DoS rules, I
> discovered this new replacement
> > cycling attack was affecting deployed lightning channels and immediatel=
y
> reported the finding to
> > some bitcoin core developers and lightning maintainers.
> >
> > ## Timeline
> >
> > - 2022-12-16: Report of the finding to Suhas Daftuar, Anthony Towns,
> Greg Sanders and Gloria Zhao
> > - 2022-12-16: Report to LN maintainers: Rusty Russell, Bastien
> Teinturier, Matt Corallo and Olaoluwa
> > Osuntunkun
> > - 2022-12-23: Sharing to Eugene Siegel (LND)
> > - 2022-12-24: Sharing to James O'Beirne and Antoine Poinsot
> (non-lightning potential affected projects)
> > - 2022-01-14: Sharing to Gleb Naumenko (miners incentives and
> cross-layers issuers) and initial
> > proposal of an early public disclosure
> > - 2022-01-19: Collection of analysis if other second-layers and
> multi-party applications affected.
> > LN mitigations development starts.
> > - 2023-05-04: Sharing to Wilmer Paulino (LDK)
> > - 2023-06-20: LN mitigations implemented and progressively released.
> Week of the 16 october proposed
> > for full disclosure.
> > - 2023-08-10: CVEs assigned by MITRE
> > - 2023-10-05: Pre-disclosure of LN CVEs numbers and replacement cycling
> attack existence to
> > security@bitcoincore.org <mailto:security@bitcoincore.org>.
> > - 2023-10-16: Full disclosure of CVE-2023-40231 / CVE-2023-40232 /
> CVE-2023-40233 / CVE-2023-40234
> > and replacement cycling attacks
> >
> > ## Conclusion
> >
> > Despite the line of mitigations adopted and deployed by current major
> lightning implementations, I
> > believe replacement cycling attacks are still practical for advanced
> attackers. Beyond this new
> > attack might come as a way to partially or completely defeat some of th=
e
> pinning mitigations which
> > have been working for years as a community.
> >
> > As of today, it is uncertain to me if lightning is not affected by a
> more severe long-term package
> > malleability critical security issue under current consensus rules, and
> if any other time-sensitive
> > multi-party protocol, designed or deployed isn't de facto affected too
> (loss of funds or denial of
> > service).
> >
> > Assuming analysis on package malleability is correct, it is unclear to
> me if it can be corrected by
> > changes in replacement / eviction rules or mempool chain of transaction=
s
> processing strategy.
> > Inviting my technical peers and the bitcoin community to look more on
> this issue, including to
> > dissent. I'll be the first one pleased if I'm fundamentally wrong on
> those issues, or if any element
> > has not been weighted with the adequate technical accuracy it deserves.
> >
> > Do not trust, verify. All mistakes and opinions are my own.
> >
> > Antoine
> >
> > "meet with Triumph and Disaster. And treat those two impostors just the
> same" - K.
> >
> > _______________________________________________
> > Lightning-dev mailing list
> > Lightning-dev@lists.linuxfoundation.org
> > https://lists.linuxfoundation.org/mailman/listinfo/lightning-dev
>

--000000000000c911890607f4cdcb
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">The disclosure mails noted a 3rd mitigation beyond=C2=A0me=
mpool scanning and transaction re-signing / re-broadcasting, namely bumping=
 CLTV delta.<div><br></div><div>Generally bumping CLTV delta is a basic lin=
e of mitigations for a lot of lightning attacks, as it gives opportunity to=
 node operators to intervene and re-broadcast their time-sensitive transact=
ions on other interfaces (e.g a secondary full-node if the first one is ecl=
ipsed).</div><div><br></div><div>About the second mitigation transaction re=
-signing, if done correctly at least sounds to put an economic cost (denomi=
nated in fees / feerates) on the attack. This is unclear to me if the game-=
theory of this cost holds.</div><div><br></div><div>One thing which sounds =
to me making the attack harder is stratum v2 deployment, as you&#39;re incr=
easing the number of miners which might do their own block templates, and t=
herefore the number of miners&#39; mempools where=C2=A0an attacker has to s=
uccessfully continuously replace in cycles channels counterparties transact=
ions.</div><div><br></div><div>A replacement buffer or history of transacti=
ons at the mempool level might be a mitigation to this attack. I believe th=
is is yet to be seen if it can be made robust enough.</div><div><br></div><=
div>I don&#39;t know if folks like tadge or rusty who have been involved in=
 the early design of lightning have more ideas of mitigations. Fees was not=
ed as a hard issue in the original paper.</div></div><br><div class=3D"gmai=
l_quote"><div dir=3D"ltr" class=3D"gmail_attr">Le=C2=A0mer. 18 oct. 2023 =
=C3=A0=C2=A001:17, Matt Corallo &lt;<a href=3D"mailto:lf-lists@mattcorallo.=
com">lf-lists@mattcorallo.com</a>&gt; a =C3=A9crit=C2=A0:<br></div><blockqu=
ote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left-wid=
th:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-l=
eft:1ex">There appears to be some confusion about this issue and the mitiga=
tions. To be clear, the deployed <br>
mitigations are not expected to fix this issue, its arguable if they provid=
e anything more than a PR <br>
statement.<br>
<br>
There are two discussed mitigations here - mempool scanning and transaction=
 re-signing/re-broadcasting.<br>
<br>
Mempool scanning relies on regularly checking the mempool of a local node t=
o see if we can catch the <br>
replacement cycle mid-cycle. It only works if wee see the first transaction=
 before the second <br>
transaction replaces it.<br>
<br>
Today, a large majority of lightning nodes run on machines with a Bitcoin n=
ode on the same IP <br>
address, making it very clear what the &quot;local node&quot; of the lightn=
ing node is. An attacker can <br>
trivially use this information to connect to said local node and do the rep=
lacement quickly, <br>
preventing the victim from seeing the replacement.<br>
<br>
More generally, however, similar discoverability is true for mining pools. =
An attacker performing <br>
this attack is likely to do the replacement attack on a miner&#39;s node di=
rectly, potentially reducing <br>
the reach of the intermediate transaction to only miners, such that the vic=
tim can never discover it <br>
at all.<br>
<br>
The second mitigation is similarly pathetic. Re-signing and re-broadcasting=
 the victim&#39;s transaction <br>
in an attempt to get it to miners even if its been removed may work, if the=
 attacker is super lazy <br>
and didn&#39;t finish writing their attack system. If the attacker is conne=
cted to a large majority of <br>
hashrate (which has historically been fairly doable), they can simply do th=
eir replacement in a <br>
cycle aggressively and arbitrarily reduce the probability that the victim&#=
39;s transaction gets confirmed.<br>
<br>
Now, the above is all true in a spherical cow kinda world, and the P2P netw=
ork has plenty of slow <br>
nodes and strange behavior. Its possible that these mitigations might, by s=
ome stroke of luck, <br>
happen to catch such an attack and prevent it, because something took longe=
r than the attacker <br>
intended or whatever. But, that&#39;s a far cry from any kind of material &=
quot;fix&quot; for the issue.<br>
<br>
Ultimately the only fix for this issue will be when miners keep a history o=
f transactions they&#39;ve <br>
seen and try them again after they may be able to enter the mempool because=
 of an attack like this.<br>
<br>
Matt<br>
<br>
On 10/16/23 12:57 PM, Antoine Riard wrote:<br>
&gt; (cross-posting mempool issues identified are exposing lightning chan t=
o loss of funds risks, other <br>
&gt; multi-party bitcoin apps might be affected)<br>
&gt; <br>
&gt; Hi,<br>
&gt; <br>
&gt; End of last year (December 2022), amid technical discussions on eltoo =
payment channels and <br>
&gt; incentives compatibility of the mempool anti-DoS rules, a new transact=
ion-relay jamming attack <br>
&gt; affecting lightning channels was discovered.<br>
&gt; <br>
&gt; After careful analysis, it turns out this attack is practical and imme=
diately=C2=A0exposed lightning <br>
&gt; routing hops carrying HTLC traffic to loss of funds security risks, bo=
th legacy and anchor=C2=A0output <br>
&gt; channels. A potential exploitation plausibly happening even without ne=
twork mempools congestion.<br>
&gt; <br>
&gt; Mitigations have been designed, implemented and deployed by all major =
lightning implementations <br>
&gt; during the last months.<br>
&gt; <br>
&gt; Please find attached the release numbers, where the mitigations should=
 be present:<br>
&gt; - LDK: v0.0.118 - CVE-2023 -40231<br>
&gt; - Eclair: v0.9.0 - CVE-2023-40232<br>
&gt; - LND: v.0.17.0-beta - CVE-2023-40233<br>
&gt; - Core-Lightning: v.23.08.01 - CVE-2023-40234<br>
&gt; <br>
&gt; While neither replacement cycling attacks have been observed or report=
ed in the wild since the last <br>
&gt; ~10 months or experimented in real-world conditions on bitcoin mainet,=
 functional test is available <br>
&gt; exercising the affected lightning channel against bitcoin core mempool=
 (26.0 release cycle).<br>
&gt; <br>
&gt; It is understood that a simple replacement cycling attack does not dem=
and privileged capabilities <br>
&gt; from an attacker (e.g no low-hashrate power) and only access to basic =
bitcoin and lightning <br>
&gt; software. Yet I still think executing such an attack successfully requ=
ests a fair amount of bitcoin <br>
&gt; technical know-how and decent preparation.<br>
&gt; <br>
&gt;=C2=A0 From my understanding of those issues, it is yet to be determine=
d if the mitigations deployed are <br>
&gt; robust enough in face of advanced replacement cycling attackers, espec=
ially ones able to combine <br>
&gt; different classes of transaction-relay jamming such as pinnings or vet=
ted with more privileged <br>
&gt; capabilities.<br>
&gt; <br>
&gt; Please find a list of potential affected bitcoin applications in this =
full disclosure report using <br>
&gt; bitcoin script timelocks or multi-party transactions, albeit no immedi=
ate security risk exposure as <br>
&gt; severe as the ones affecting lightning has been identified. Only curso=
ry review of non-lightning <br>
&gt; applications has been conducted so far.<br>
&gt; <br>
&gt; There is a paper published summarizing replacement cycling attacks on =
the lightning network:<br>
&gt; <a href=3D"https://github.com/ariard/mempool-research/blob/2023-10-rep=
lacement-paper/replacement-cycling.pdf" rel=3D"noreferrer" target=3D"_blank=
">https://github.com/ariard/mempool-research/blob/2023-10-replacement-paper=
/replacement-cycling.pdf</a> <br>
&gt; &lt;<a href=3D"https://github.com/ariard/mempool-research/blob/2023-10=
-replacement-paper/replacement-cycling.pdf" rel=3D"noreferrer" target=3D"_b=
lank">https://github.com/ariard/mempool-research/blob/2023-10-replacement-p=
aper/replacement-cycling.pdf</a>&gt;<br>
&gt; <br>
&gt;=C2=A0 =C2=A0## Problem<br>
&gt; <br>
&gt; A lightning node allows HTLCs forwarding (in bolt3&#39;s parlance acce=
pted HTLC on incoming link and <br>
&gt; offered HTLC on outgoing link) should settle the outgoing state with e=
ither a success or timeout <br>
&gt; before the incoming state timelock becomes final and an asymmetric def=
avorable settlement might <br>
&gt; happen (cf &quot;Flood &amp; Loot: A Systematic Attack on The Lightnin=
g Network&quot; section 2.3 for a classical <br>
&gt; exposition of this lightning security property).<br>
&gt; <br>
&gt; Failure to satisfy this settlement requirement exposes a forwarding ho=
p to a loss of fund risk where <br>
&gt; the offered HTLC is spent by the outgoing link counterparty&#39;s HTLC=
-preimage and the accepted HTLC is <br>
&gt; spent by the incoming link counterparty&#39;s HTLC-timeout.<br>
&gt; <br>
&gt; The specification mandates the incoming HTLC expiration timelock to be=
 spaced out by an interval of <br>
&gt; `cltv_expiry_delta` from the outgoing HTLC expiration timelock, this e=
xact interval value being an <br>
&gt; implementation and node policy setting. As a minimal value, the specif=
ication recommends 34 blocks <br>
&gt; of interval. If the timelock expiration I of the inbound HTLC is equal=
 to 100 from chain tip, the <br>
&gt; timelock expiration O of the outbound HTLC must be equal to 66 blocks =
from chain tip, giving a <br>
&gt; reasonable buffer of reaction to the lightning forwarding node.<br>
&gt; <br>
&gt; In the lack of cooperative off-chain settlement of the HTLC on the out=
going link negotiated with the <br>
&gt; counterparty (either `update_fulfill_htlc` or `update_fail_htlc`) when=
 O is reached, the lightning <br>
&gt; node should broadcast its commitment transaction. Once the commitment =
is confirmed (if anchor and <br>
&gt; the 1 CSV encumbrance is present), the lightning node broadcasts and c=
onfirms its HTLC-timeout <br>
&gt; before I height is reached.<br>
&gt; <br>
&gt; Here enter a replacement cycling attack. A malicious channel counterpa=
rty can broadcast its <br>
&gt; HTLC-preimage transaction with a higher absolute fee and higher feerat=
e than the honest HTLC-timeout <br>
&gt; of the victim lightning node and triggers a replacement. Both for lega=
cy and anchor output channels, <br>
&gt; a HTLC-preimage on a counterparty commitment transaction is malleable,=
 i.e additional inputs or <br>
&gt; outputs can be added. The HTLC-preimage spends an unconfirmed and unre=
lated to the channel parent <br>
&gt; transaction M and conflicts its child.<br>
&gt; <br>
&gt; As the HTLC-preimage spends an unconfirmed input that was already incl=
uded in the unconfirmed and <br>
&gt; unrelated child transaction (rule 2), pays an absolute higher fee of a=
t least the sum paid by the <br>
&gt; HTLC-timeout and child transaction (rule 3) and the HTLC-preimage feer=
ate is greater than all <br>
&gt; directly conflicting transactions (rule 6), the replacement is accepte=
d. The honest HTLC-timeout is <br>
&gt; evicted out of the mempool.<br>
&gt; <br>
&gt; In an ulterior move, the malicious counterparty can replace the parent=
 transaction itself with <br>
&gt; another candidate N satisfying the replacement rules, triggering the e=
viction of the malicious <br>
&gt; HTLC-preimage from the mempool as it was a child of the parent T.<br>
&gt; <br>
&gt; There is no spending candidate of the offered HTLC output for the curr=
ent block laying in network <br>
&gt; mempools.<br>
&gt; <br>
&gt; This replacement cycling tricks can be repeated for each rebroadcast a=
ttempt of the HTLC-timeout by <br>
&gt; the honest lightning node until expiration of the inbound HTLC timeloc=
k I. Once this height is <br>
&gt; reached a HTLC-timeout is broadcast by the counterparty&#39;s on the i=
ncoming link in collusion with the <br>
&gt; one on the outgoing link broadcasting its own HTLC-preimage.<br>
&gt; <br>
&gt; The honest Lightning node has been &quot;double-spent&quot; in its HTL=
C forwarding.<br>
&gt; <br>
&gt; As a notable factor impacting the success of the attack, a lightning n=
ode&#39;s honest HTLC-timeout <br>
&gt; might be included in the block template of the miner winning the block=
 race and therefore realizes a <br>
&gt; spent of the offered output. In practice, a replacement cycling attack=
 might over-connect to miners&#39; <br>
&gt; mempools and public reachable nodes to succeed in a fast eviction of t=
he HTLC-timeout by its <br>
&gt; HTLC-preimage. As this latter transaction can come with a better ances=
tor-score, it should be picked <br>
&gt; up on the flight by economically competitive miners.<br>
&gt; <br>
&gt; A functional test exercising a simple replacement cycling of a HTLC tr=
ansaction on bitcoin core <br>
&gt; mempool is available:<br>
&gt; <a href=3D"https://github.com/ariard/bitcoin/commits/2023-test-mempool=
" rel=3D"noreferrer" target=3D"_blank">https://github.com/ariard/bitcoin/co=
mmits/2023-test-mempool</a> <br>
&gt; &lt;<a href=3D"https://github.com/ariard/bitcoin/commits/2023-test-mem=
pool" rel=3D"noreferrer" target=3D"_blank">https://github.com/ariard/bitcoi=
n/commits/2023-test-mempool</a>&gt;<br>
&gt; <br>
&gt; ## Deployed LN mitigations<br>
&gt; <br>
&gt; Aggressive rebroadcasting: As the replacement cycling attacker benefit=
s from the HTLC-timeout being <br>
&gt; usually broadcast by lightning nodes only once every block, or less th=
e replacement cycling <br>
&gt; malicious transactions paid only equal the sum of the absolute fees pa=
id by the HTLC, adjusted with <br>
&gt; the replacement penalty. Rebroadcasting randomly and multiple times be=
fore the next block increases <br>
&gt; the absolute fee cost for the attacker.<br>
&gt; <br>
&gt; Implemented and deployed by Eclair, Core-Lightning, LND and LDK .<br>
&gt; <br>
&gt; Local-mempool preimage monitoring: As the replacement cycling attacker=
 in a simple setup broadcast <br>
&gt; the HTLC-preimage to all the network mempools, the honest lightning no=
de is able to catch on the <br>
&gt; flight the unconfirmed HTLC-preimage, before its subsequent mempool re=
placement. The preimage can be <br>
&gt; extracted from the second-stage HTLC-preimage and used to fetch the of=
f-chain inbound HTLC with a <br>
&gt; cooperative message or go on-chain with it to claim the accepted HTLC =
output.<br>
&gt; <br>
&gt; Implemented and deployed by Eclair and LND.<br>
&gt; <br>
&gt; CLTV Expiry Delta: With every jammed block comes an absolute fee cost =
paid by the attacker, a risk <br>
&gt; of the HTLC-preimage being detected or discovered by the honest lightn=
ing node, or the HTLC-timeout <br>
&gt; to slip in a winning block template. Bumping the default CLTV delta ha=
rdens the odds of success of a <br>
&gt; simple replacement cycling attack.<br>
&gt; <br>
&gt; Default setting: Eclair 144, Core-Lightning 34, LND 80 and LDK 72.<br>
&gt; <br>
&gt; ## Affected Bitcoin Protocols and Applications<br>
&gt; <br>
&gt;=C2=A0 From my understanding the following list of Bitcoin protocols an=
d applications could be affected by <br>
&gt; new denial-of-service vectors under some level of network mempools con=
gestion. Neither tests or <br>
&gt; advanced review of specifications (when available) has been conducted =
for each of them:<br>
&gt; - on-chain DLCs<br>
&gt; - coinjoins<br>
&gt; - payjoins<br>
&gt; - wallets with time-sensitive paths<br>
&gt; - peerswap and submarine swaps<br>
&gt; - batch payouts<br>
&gt; - transaction &quot;accelerators&quot;<br>
&gt; <br>
&gt; Inviting their developers, maintainers and operators to investigate ho=
w replacement cycling attacks <br>
&gt; might disrupt their in-mempool chain of transactions, or fee-bumping f=
lows at the shortest delay. <br>
&gt; Simple flows and non-multi-party transactions should not be affected t=
o the best of my understanding.<br>
&gt; <br>
&gt; ## Open Problems: Package Malleability<br>
&gt; <br>
&gt; Pinning attacks have been known for years as a practical vector to com=
promise lightning channels <br>
&gt; funds safety, under different scenarios (cf. current bip331&#39;s moti=
vation section). Mitigations at <br>
&gt; the mempool level have been designed, discussed and are under implemen=
tation by the community <br>
&gt; (ancestor package relay=C2=A0+ nverrsion=3D3 policy). Ideally, they sh=
ould constraint a pinning attacker to <br>
&gt; always attach a high feerate package (commitment=C2=A0+ CPFP) to repla=
ce the honest package, or allow a <br>
&gt; honest lightning node to overbid a malicious pinning package and get i=
ts time-sensitive transaction <br>
&gt; optimistically included in the chain.<br>
&gt; <br>
&gt; Replacement cycling attack seem to offer a new way to neutralize the d=
esign goals of package relay <br>
&gt; and its companion nversion=3D3 policy, where an attacker package RBF a=
 honest package out of the <br>
&gt; mempool to subsequently double-spend its own high-fee child with a tra=
nsaction unrelated to the <br>
&gt; channel. As the remaining commitment transaction is pre-signed with a =
minimal relay fee, it can be <br>
&gt; evicted out of the mempool.<br>
&gt; <br>
&gt; A functional test exercising a simple replacement cycling of a lightni=
ng channel commitment <br>
&gt; transaction on top of the nversion=3D3 code branch is available:<br>
&gt; <a href=3D"https://github.com/ariard/bitcoin/commits/2023-10-test-memp=
ool-2" rel=3D"noreferrer" target=3D"_blank">https://github.com/ariard/bitco=
in/commits/2023-10-test-mempool-2</a> <br>
&gt; &lt;<a href=3D"https://github.com/ariard/bitcoin/commits/2023-10-test-=
mempool-2" rel=3D"noreferrer" target=3D"_blank">https://github.com/ariard/b=
itcoin/commits/2023-10-test-mempool-2</a>&gt;<br>
&gt; <br>
&gt; ## Discovery<br>
&gt; <br>
&gt; In 2018, the issue of static fees for pre-signed lightning transaction=
s is made more widely known, <br>
&gt; the carve-out exemption in mempool rules to mitigate in-mempool packag=
e limits pinning and the <br>
&gt; anchor output pattern are proposed.<br>
&gt; <br>
&gt; In 2019, bitcoin core 0.19 is released with carve-out support. Continu=
ed discussion of the anchor <br>
&gt; output pattern as a dynamic fee-bumping method.<br>
&gt; <br>
&gt; In 2020, draft of anchor output submitted to the bolts. Initial findin=
g of economic pinning against <br>
&gt; lightning commitment and second-stage HTLC transactions. Subsequent di=
scussions of a <br>
&gt; preimage-overlay network or package-relay as mitigations. Public call =
made to inquiry more on <br>
&gt; potential other transaction-relay jamming attacks affecting lightning.=
<br>
&gt; <br>
&gt; In 2021, initial work in bitcoin core 22.0 of package acceptance. Cont=
inued discussion of the <br>
&gt; pinning attacks and shortcomings of current mempool rules during commu=
nity-wide online workshops. <br>
&gt; Later the year, in light of all issues for bitcoin second-layers, a pr=
oposal is made about killing <br>
&gt; the mempool.<br>
&gt; <br>
&gt; In 2022, bip proposed for package relay and new proposed v3 policy des=
ign proposed for a review and <br>
&gt; implementation. Mempoolfullrbf is supported in bitcoin core 24.0 and c=
onceptual questions about <br>
&gt; alignment of mempool rules w.r.t miners incentives are investigated.<b=
r>
&gt; <br>
&gt; Along this year 2022, eltoo lightning channels design are discussed, i=
mplemented and reviewed. In <br>
&gt; this context and after discussions on mempool anti-DoS rules, I discov=
ered this new replacement <br>
&gt; cycling attack was affecting deployed lightning channels and immediate=
ly reported the finding to <br>
&gt; some bitcoin core developers and lightning maintainers.<br>
&gt; <br>
&gt; ## Timeline<br>
&gt; <br>
&gt; - 2022-12-16: Report of the finding to Suhas Daftuar, Anthony Towns, G=
reg Sanders and Gloria Zhao<br>
&gt; - 2022-12-16: Report to LN maintainers: Rusty Russell, Bastien Teintur=
ier, Matt Corallo and Olaoluwa <br>
&gt; Osuntunkun<br>
&gt; - 2022-12-23: Sharing to Eugene Siegel (LND)<br>
&gt; - 2022-12-24: Sharing to James O&#39;Beirne and Antoine Poinsot (non-l=
ightning potential affected projects)<br>
&gt; - 2022-01-14: Sharing to Gleb Naumenko (miners incentives and cross-la=
yers issuers) and initial <br>
&gt; proposal of an early public disclosure<br>
&gt; - 2022-01-19: Collection of analysis if other second-layers and multi-=
party applications affected. <br>
&gt; LN mitigations development starts.<br>
&gt; - 2023-05-04: Sharing to Wilmer Paulino (LDK)<br>
&gt; - 2023-06-20: LN mitigations implemented and progressively released. W=
eek of the 16 october proposed <br>
&gt; for full disclosure.<br>
&gt; - 2023-08-10: CVEs assigned by MITRE<br>
&gt; - 2023-10-05: Pre-disclosure of LN CVEs numbers and replacement cyclin=
g attack existence to <br>
&gt; <a href=3D"mailto:security@bitcoincore.org" target=3D"_blank">security=
@bitcoincore.org</a> &lt;mailto:<a href=3D"mailto:security@bitcoincore.org"=
 target=3D"_blank">security@bitcoincore.org</a>&gt;.<br>
&gt; - 2023-10-16: Full disclosure of CVE-2023-40231 / CVE-2023-40232 / CVE=
-2023-40233 / CVE-2023-40234 <br>
&gt; and replacement cycling attacks<br>
&gt; <br>
&gt; ## Conclusion<br>
&gt; <br>
&gt; Despite the line of mitigations adopted and deployed by current major =
lightning implementations, I <br>
&gt; believe replacement cycling attacks are still practical for advanced a=
ttackers. Beyond this new <br>
&gt; attack might come as a way to partially or completely defeat some of t=
he pinning mitigations which <br>
&gt; have been working for years as a community.<br>
&gt; <br>
&gt; As of today, it is uncertain to me if lightning is not affected by a m=
ore severe long-term package <br>
&gt; malleability critical security issue under current consensus rules, an=
d if any other time-sensitive <br>
&gt; multi-party protocol, designed or deployed isn&#39;t de facto affected=
 too (loss of funds or denial of <br>
&gt; service).<br>
&gt; <br>
&gt; Assuming analysis on package malleability is correct, it is unclear to=
 me if it can be corrected by <br>
&gt; changes in replacement / eviction rules or mempool chain of transactio=
ns processing strategy. <br>
&gt; Inviting my technical peers and the bitcoin community to look more on =
this issue, including to <br>
&gt; dissent. I&#39;ll be the first one pleased if I&#39;m fundamentally wr=
ong on those issues, or if any element <br>
&gt; has not been weighted with the adequate technical accuracy it deserves=
.<br>
&gt; <br>
&gt; Do not trust, verify. All mistakes and opinions are my own.<br>
&gt; <br>
&gt; Antoine<br>
&gt; <br>
&gt; &quot;meet with Triumph and Disaster. And treat those two impostors ju=
st the same&quot; - K.<br>
&gt; <br>
&gt; _______________________________________________<br>
&gt; Lightning-dev mailing list<br>
&gt; <a href=3D"mailto:Lightning-dev@lists.linuxfoundation.org" target=3D"_=
blank">Lightning-dev@lists.linuxfoundation.org</a><br>
&gt; <a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/lightnin=
g-dev" rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.o=
rg/mailman/listinfo/lightning-dev</a><br>
</blockquote></div>

--000000000000c911890607f4cdcb--