Commit cf66945
authored
Resolve unauthenticated remote DoS in quinn-proto QUIC parsing (#54)
* Resolve unauthenticated remote DoS in QUIC transport parameter parsing
Investigate quinn-proto 0.11.13 vulnerability where attacker-controlled
varints decoded with unwrap() cause panic on truncated encodings,
reachable over the network with a single unauthenticated packet.
Upgrade quinn-proto to 0.11.14 which replaces unwrap() with proper
error propagation.
* Resolve unauthenticated remote DoS in QUIC transport parameter parsing
Introduce quinn-proto 0.11.14 version floor in btlightning Cargo.toml
to force all downstream consumers to resolve the patched version.
Addresses CVE-2026-31812 where attacker-controlled varints decoded
with unwrap() cause panic on truncated encodings, reachable over the
network with a single unauthenticated packet.1 parent 5d17787 commit cf66945
2 files changed
+14
-12
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| 17 | + | |
17 | 18 | | |
18 | 19 | | |
19 | 20 | | |
| |||
0 commit comments