U.S. flag   An official website of the United States government
Dot gov

Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Https

Secure .gov websites use HTTPS
A lock (Dot gov) or https:// means you've safely connected to the .gov website. Share sensitive information only on official, secure websites.

Vulnerability Change Records for CVE-2024-4435

Change History

New CVE Received by NIST 5/21/2024 6:15:10 AM

Action Type Old Value New Value
Added CVSS V3.1

								
							
							
						
DFINITY Foundation AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
Added CWE

								
							
							
						
DFINITY Foundation CWE-401
Added Description

								
							
							
						
When storing unbounded types in a BTreeMap, a node is represented as a linked list of "memory chunks". It was discovered recently that when we deallocate a node, in some cases only the first memory chunk is deallocated, and the rest of the memory chunks remain (incorrectly) allocated, causing a memory leak. In the worst case, depending on how a canister uses the BTreeMap, an adversary could interact with the canister through its API and trigger interactions with the map that keep consuming memory due to the memory leak. This could potentially lead to using an excessive amount of memory, or even running out of memory.

This issue has been fixed in  #212 https://github.com/dfinity/stable-structures/pull/212  by changing the logic for deallocating nodes to ensure that all of a node's memory chunks are deallocated and users are asked to upgrade to version 0.6.4.. Tests have been added to prevent regressions of this nature moving forward. Note: Users of stable-structure < 0.6.0 are not affected.

Users who are not storing unbounded types in BTreeMap are not affected and do not need to upgrade. Otherwise, an upgrade to version 0.6.4 is necessary.
Added Reference

								
							
							
						
DFINITY Foundation https://docs.rs/ic-stable-structures/0.6.4/ic_stable_structures/ [No types assigned]
Added Reference

								
							
							
						
DFINITY Foundation https://github.com/dfinity/stable-structures/pull/212 [No types assigned]
Added Reference

								
							
							
						
DFINITY Foundation https://internetcomputer.org/docs/current/developer-docs/smart-contracts/maintain/storage#stable-memory [No types assigned]