Lucene search

K
rustsecRustsecRUSTSEC-2019-0023
HistoryAug 24, 2019 - 12:00 p.m.

Cloned interners may read already dropped strings

2019-08-2412:00:00
rustsec.org
5

0.004 Low

EPSS

Percentile

74.2%

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&gt;.
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&gt; and was released in 0.6.4.

0.004 Low

EPSS

Percentile

74.2%

Related for RUSTSEC-2019-0023