zebrad has unbounded memory leak in mempool download pipeline via timeout path cancel_handles retention (CVE-2026-52734)
### Am I affected You are affected if: 1. You run `zebrad` up to and including `v4.4.1`. 2. Your node accepts inbound P2P connections (`network.listen_addr` is set, which is the default). 3. Your node's mempool is active (node is synced near the chain tip). All default configurations are affected. ### Summary The mempool download pipeline's `cancel_handles` map retains entries for transactions whose verification times out at the outer `RATE_LIMIT_DELAY` (73-second) boundary. The `tokio::time::error::Elapsed` error carries no payload, so the transaction ID is unrecoverable and the corresponding `cancel_handles` entry (including the full `Gossip::Tx(UnminedTx)`, up to ~2 MB) is never removed. Entries accumulate monotonically with no upper bound or garbage collection, leading to eventual out-of-memory process termination. ### Details `Downloads::poll_next()` at `zebrad/src/components/mempool/downloads.rs:215-228` handles three terminal states for a verification task: - `Ok(Ok(...))`: success. Calls `cancel_handles.remove(&tx.transaction.id)`. Correct. - `Ok(Err(...))`: verification error. Calls `cancel_handles.remove(&hash)`. Correct. - `Err(elapsed)`: outer timeout. Returns `Err(elapsed)` without removing anything. **Bug.** `tokio::time::error::Elapsed` has no payload, so the timed-out transaction's `UnminedTxId` is unrecoverable from the error. The consumer at `zebrad/src/components/mempool.rs:663-672` explicitly acknowledges this gap with a TODO comment. The only cleanup paths for `cancel_handles` are `cancel(mined_ids)` (removes entries matching mined transaction IDs; attacker transactions are never mined) and `cancel_all()` (clears everything on shutdown or chain reset). No periodic GC, no time-based eviction, and no count cap exists. For direct `tx` pushes (`Gossip::Tx`), the retained entry holds the full deserialized transaction, which can be up to ~9 MB in memory for a transaction near the transparent-output extreme. Per-connection leak rate at worst case: ~685 KB/s (~2.4 GB/hour). ### Patches The fix preserves the `UnminedTxId` through the timeout error path: wrap the timeout future so the spawned task's outer error carries the txid (e.g., `Err((txid, elapsed))`). In `Downloads::poll_next()`, on the timeout arm, call `cancel_handles.remove(&txid)`. ### Workarounds There is no configuration-level workaround. Restarting the node clears the accumulated entries. Operators running in memory-constrained environments (containers with cgroup limits) may see the process killed by the OOM killer before natural recovery. ### Impact Gradual, unbounded memory exhaustion of a Zebra node from unauthenticated P2P traffic. The leak is monotonic (entries are never freed under normal operation) but slow (~685 KB/s per connection worst case). An attacker must sustain traffic for hours to exhaust typical server memory. The node continues operating normally until memory pressure becomes critical, at which point the OS OOM killer terminates the process or the node degrades due to swap pressure. No consensus impact, no fund loss, no on-disk corruption. ### Credit Reported by `@AnticsDecoded` via a private GitHub Security Advisory submission. Working E2E reproduction on a live regtest node with staged parent/child transaction dependencies.
AI Analysis
Technical Summary
The vulnerability in zebrad's mempool download pipeline arises from a bug where the cancel_handles map retains entries for transactions that time out during verification. Specifically, when a verification task times out (tokio::time::error::Elapsed), the transaction ID is lost because the error carries no payload, preventing removal of the corresponding entry. These entries include the full deserialized transaction (up to ~9 MB), accumulating without bound and causing memory exhaustion. The only cleanup occurs on mined transactions or node shutdown, neither of which addresses timed-out transactions. The fix involves preserving the transaction ID through the timeout error path and removing the entry upon timeout. No configuration workaround exists; only node restart clears the memory.
Potential Impact
This vulnerability leads to gradual, unbounded memory exhaustion on zebrad nodes accepting inbound P2P connections with active mempools. Memory usage grows monotonically as timed-out transactions accumulate in memory, potentially causing the operating system's out-of-memory killer to terminate the process or degrade node performance due to swap pressure. The leak rate is approximately 685 KB/s per connection in worst-case scenarios, requiring sustained attacker traffic over hours to exhaust typical server memory. There is no impact on consensus, no loss of funds, and no on-disk data corruption.
Mitigation Recommendations
A patch is available in zebrad versions 4.5.0 and later that fixes the memory leak by preserving the transaction ID on timeout and removing the corresponding entry. Operators should upgrade to version 4.5.0 or later to remediate this issue. There is no configuration-level workaround. Restarting the node clears accumulated entries but does not prevent recurrence. Operators in memory-constrained environments should consider upgrading promptly to avoid out-of-memory termination.
zebrad has unbounded memory leak in mempool download pipeline via timeout path cancel_handles retention (CVE-2026-52734)
Description
### Am I affected You are affected if: 1. You run `zebrad` up to and including `v4.4.1`. 2. Your node accepts inbound P2P connections (`network.listen_addr` is set, which is the default). 3. Your node's mempool is active (node is synced near the chain tip). All default configurations are affected. ### Summary The mempool download pipeline's `cancel_handles` map retains entries for transactions whose verification times out at the outer `RATE_LIMIT_DELAY` (73-second) boundary. The `tokio::time::error::Elapsed` error carries no payload, so the transaction ID is unrecoverable and the corresponding `cancel_handles` entry (including the full `Gossip::Tx(UnminedTx)`, up to ~2 MB) is never removed. Entries accumulate monotonically with no upper bound or garbage collection, leading to eventual out-of-memory process termination. ### Details `Downloads::poll_next()` at `zebrad/src/components/mempool/downloads.rs:215-228` handles three terminal states for a verification task: - `Ok(Ok(...))`: success. Calls `cancel_handles.remove(&tx.transaction.id)`. Correct. - `Ok(Err(...))`: verification error. Calls `cancel_handles.remove(&hash)`. Correct. - `Err(elapsed)`: outer timeout. Returns `Err(elapsed)` without removing anything. **Bug.** `tokio::time::error::Elapsed` has no payload, so the timed-out transaction's `UnminedTxId` is unrecoverable from the error. The consumer at `zebrad/src/components/mempool.rs:663-672` explicitly acknowledges this gap with a TODO comment. The only cleanup paths for `cancel_handles` are `cancel(mined_ids)` (removes entries matching mined transaction IDs; attacker transactions are never mined) and `cancel_all()` (clears everything on shutdown or chain reset). No periodic GC, no time-based eviction, and no count cap exists. For direct `tx` pushes (`Gossip::Tx`), the retained entry holds the full deserialized transaction, which can be up to ~9 MB in memory for a transaction near the transparent-output extreme. Per-connection leak rate at worst case: ~685 KB/s (~2.4 GB/hour). ### Patches The fix preserves the `UnminedTxId` through the timeout error path: wrap the timeout future so the spawned task's outer error carries the txid (e.g., `Err((txid, elapsed))`). In `Downloads::poll_next()`, on the timeout arm, call `cancel_handles.remove(&txid)`. ### Workarounds There is no configuration-level workaround. Restarting the node clears the accumulated entries. Operators running in memory-constrained environments (containers with cgroup limits) may see the process killed by the OOM killer before natural recovery. ### Impact Gradual, unbounded memory exhaustion of a Zebra node from unauthenticated P2P traffic. The leak is monotonic (entries are never freed under normal operation) but slow (~685 KB/s per connection worst case). An attacker must sustain traffic for hours to exhaust typical server memory. The node continues operating normally until memory pressure becomes critical, at which point the OS OOM killer terminates the process or the node degrades due to swap pressure. No consensus impact, no fund loss, no on-disk corruption. ### Credit Reported by `@AnticsDecoded` via a private GitHub Security Advisory submission. Working E2E reproduction on a live regtest node with staged parent/child transaction dependencies.
CVSS v3.1
Score 5.3medium
Affected software
Run on your own infrastructure? Check whether these packages are installed with threat-finder — our free open-source scanner.
Weaknesses
AI-Powered Analysis
Machine-generated threat intelligence
Technical Analysis
The vulnerability in zebrad's mempool download pipeline arises from a bug where the cancel_handles map retains entries for transactions that time out during verification. Specifically, when a verification task times out (tokio::time::error::Elapsed), the transaction ID is lost because the error carries no payload, preventing removal of the corresponding entry. These entries include the full deserialized transaction (up to ~9 MB), accumulating without bound and causing memory exhaustion. The only cleanup occurs on mined transactions or node shutdown, neither of which addresses timed-out transactions. The fix involves preserving the transaction ID through the timeout error path and removing the entry upon timeout. No configuration workaround exists; only node restart clears the memory.
Potential Impact
This vulnerability leads to gradual, unbounded memory exhaustion on zebrad nodes accepting inbound P2P connections with active mempools. Memory usage grows monotonically as timed-out transactions accumulate in memory, potentially causing the operating system's out-of-memory killer to terminate the process or degrade node performance due to swap pressure. The leak rate is approximately 685 KB/s per connection in worst-case scenarios, requiring sustained attacker traffic over hours to exhaust typical server memory. There is no impact on consensus, no loss of funds, and no on-disk data corruption.
Mitigation Recommendations
A patch is available in zebrad versions 4.5.0 and later that fixes the memory leak by preserving the transaction ID on timeout and removing the corresponding entry. Operators should upgrade to version 4.5.0 or later to remediate this issue. There is no configuration-level workaround. Restarting the node clears accumulated entries but does not prevent recurrence. Operators in memory-constrained environments should consider upgrading promptly to avoid out-of-memory termination.
Technical Details
- Gcve Source
- db.gcve.eu
- Osv Id
- GHSA-65jj-fmw8-468q
- Osv Schema Version
- 1.4.0
- Aliases
- ["CVE-2026-52734"]
- Ecosystems
- ["crates.io"]
- Database Specific Severity
- MODERATE
- Cvss Version
- 3.1
Threat ID: 6a46ecb527e9c7971943c8aa
Added to database: 07/02/2026, 22:56:53 UTC
Last enriched: 07/02/2026, 23:09:49 UTC
Last updated: 07/31/2026, 12:27:30 UTC
Views: 34
Community Reviews
0 reviewsCrowdsource mitigation strategies, share intel context, and vote on the most helpful responses. Sign in to add your voice and help keep defenders ahead.
Want to contribute mitigation steps or threat intel context? Sign in or create an account to join the community discussion.
Actions
Updates to AI analysis require Pro Console access. Upgrade inside Console → Billing.
Need more coverage?
Upgrade to Pro Console for AI refresh and higher limits.
For incident response and remediation, OffSeq services can help resolve threats faster.
Latest Threats
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.