RUSTSEC-2019-0023

    Dashboard / Vulnerabilities / RUSTSEC-2019-0023

    RUSTSEC-2019-0023

    Published: 24 Aug 2019Last Modified: 8 Nov 2023

    Summary: Cloned interners may read already dropped strings

    Details: Affected versions of this crate did not clone contained strings when an interner is cloned. Interners have raw pointers to the contained strings, and they keep pointing the strings which the old interner owns, after the interner is cloned. If a new cloned interner is alive and the old original interner is dead, the new interner has dangling pointers to the old interner's storage, which is already dropped. This allows an attacker to read the already freed memory. The dangling pointers are used by the interners to check a string is already interned. An attacker can do brute force attack to get the data pointed by the dangling pointer. The flaw was corrected by <https://github.com/Robbepop/string-interner/pull/10>. This patch implements `Clone` manually to the interner type, so that the internal raw pointers always point the strings owned by the same interner. PR #10 was also backported to the 0.6 release line in <https://github.com/Robbepop/string-interner/pull/14> and was released in 0.6.4.

    Affected packages

    Package

    Name: string-interner

    Purl: pkg:cargo/string-interner

    Affected ranges

    Type: SEMVER

    Events:

    Introduced- 0.0.0-0
    Fixed -0.6.4

    Affected versions

    Common Vulnerability Scoring System

    Attack Vector
    Network
    Adjacent
    Local
    Physical
    Privileges Required
    None
    Low
    High
    User Interaction
    None
    Required
    Scope
    Unchanged
    Changed
    Confidentiality
    None
    Low
    High
    Integrity
    None
    Low
    High
    Availability
    None
    Low
    High