Skip to content

cassandra-rs's non-idiomatic use of iterators leads to use after free

High severity GitHub Reviewed Published Feb 28, 2024 in Metaswitch/cassandra-rs • Updated Apr 5, 2024

Package

cargo cassandra-cpp (Rust)

Affected versions

< 3.0.0

Patched versions

3.0.0

Description

Impact

Code that attempts to use an item (e.g., a row) returned by an iterator after the iterator has advanced to the next item will be accessing freed memory and experience undefined behaviour. Code that uses the item and then advances the iterator is unaffected. This problem has always existed.

This is a use-after-free bug, so it's rated high severity. If your code uses a pre-3.0.0 version of cassandra-rs, and uses an item returned by a cassandra-rs iterator after calling next() on that iterator, then it is vulnerable. However, such code will almost always fail immediately - so we believe it is unlikely that any code using this pattern would have reached production. For peace of mind, we recommend you upgrade anyway.

Patches

The problem has been fixed in version 3.0.0. Users should upgrade to ensure their code cannot use the problematic pattern.

Workarounds

Ensure all usage fits the expected pattern. For example, use get_first_row() rather than an iterator, or completely process an item before advancing the iterator with next().

References

None.

References

@kw217 kw217 published to Metaswitch/cassandra-rs Feb 28, 2024
Published by the National Vulnerability Database Feb 29, 2024
Published to the GitHub Advisory Database Apr 5, 2024
Reviewed Apr 5, 2024
Last updated Apr 5, 2024

Severity

High
7.5
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Weaknesses

CVE ID

CVE-2024-27284

GHSA ID

GHSA-x9xc-63hg-vcfq

Credits

Checking history
See something to contribute? Suggest improvements for this vulnerability.