Vulnerability Details : CVE-2023-34451
CometBFT is a Byzantine Fault Tolerant (BFT) middleware that takes a state transition machine and replicates it on many machines. The mempool maintains two data structures to keep track of outstanding transactions: a list and a map.
These two data structures are supposed to be in sync all the time in the sense that the map tracks the index (if any) of the transaction in the list. In `v0.37.0`, and `v0.37.1`, as well as in `v0.34.28`, and all previous releases of the CometBFT repo2, it is possible to have them out of sync. When this happens, the list may contain several copies of the same transaction. Because the map tracks a single index, it is then no longer possible to remove all the copies of the transaction from the list. This happens even if the duplicated transaction is later committed in a block. The only way to remove the transaction is by restarting the node.
The above problem can be repeated on and on until a sizable number of transactions are stuck in the mempool, in order to try to bring down the target node. The problem is fixed in releases `v0.34.29` and `v0.37.2`. Some workarounds are available. Increasing the value of `cache_size` in `config.toml` makes it very difficult to effectively attack a full node. Not exposing the transaction submission RPC's would mitigate the probability of a successful attack, as the attacker would then have to create a modified (byzantine) full node to be able to perform the attack via p2p.
Products affected by CVE-2023-34451
- cpe:2.3:a:cometbft:cometbft:*:*:*:*:*:*:*:*
- cpe:2.3:a:cometbft:cometbft:*:*:*:*:*:*:*:*
Exploit prediction scoring system (EPSS) score for CVE-2023-34451
0.11%
Probability of exploitation activity in the next 30 days
EPSS Score History
~ 44 %
Percentile, the proportion of vulnerabilities that are scored at or less
CVSS scores for CVE-2023-34451
Base Score | Base Severity | CVSS Vector | Exploitability Score | Impact Score | Score Source | First Seen |
---|---|---|---|---|---|---|
8.2
|
HIGH | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H |
3.9
|
4.2
|
NIST | |
8.2
|
HIGH | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H |
3.9
|
4.2
|
GitHub, Inc. |
CWE ids for CVE-2023-34451
-
The product does not sufficiently track and release allocated memory after it has been used, which slowly consumes remaining memory.Assigned by:
- nvd@nist.gov (Primary)
- security-advisories@github.com (Secondary)
References for CVE-2023-34451
-
https://github.com/cometbft/cometbft/pull/890
Prevent a transaction to appear twice in the mempool by otrack · Pull Request #890 · cometbft/cometbft · GitHubExploit;Issue Tracking;Patch
-
https://github.com/cometbft/cometbft/security/advisories/GHSA-w24w-wp77-qffm
Duplicate transactions in the mempool's data structures · Advisory · cometbft/cometbft · GitHubExploit;Mitigation;Vendor Advisory
-
https://github.com/tendermint/tendermint/pull/2778
mempool no gossip back by ValarDragon · Pull Request #2778 · tendermint/tendermint · GitHubIssue Tracking;Patch
Jump to