rustsec-2024-0007
Vulnerability from osv_rustsec
Published
2024-01-19 12:00
Modified
2024-02-10 15:57
Summary
Use-after-free when setting the locale
Details
Version 3.0.0 introduced an AtomicStr type, that is used to store the current locale.
It stores the locale as a raw pointer to an Arc<String>.
The locale can be read with AtomicStr::as_str().
AtomicStr::as_str() does not increment the usage counter of the Arc.
If the locale is changed in one thread, another thread can have a stale -- possibly already freed -- reference to the stored string.
{
"affected": [
{
"database_specific": {
"categories": [
"memory-exposure"
],
"cvss": null,
"informational": "unsound"
},
"ecosystem_specific": {
"affected_functions": null,
"affects": {
"arch": [],
"functions": [
"rust_i18n_support::AtomicStr::as_str"
],
"os": []
}
},
"package": {
"ecosystem": "crates.io",
"name": "rust-i18n-support",
"purl": "pkg:cargo/rust-i18n-support"
},
"ranges": [
{
"events": [
{
"introduced": "3.0.0"
},
{
"fixed": "3.0.1"
}
],
"type": "SEMVER"
}
],
"versions": []
}
],
"aliases": [
"GHSA-c8v3-jhv9-4ppc"
],
"database_specific": {
"license": "CC0-1.0"
},
"details": "Version 3.0.0 introduced an `AtomicStr` type, that is used to store the current locale.\nIt stores the locale as a raw pointer to an `Arc\u003cString\u003e`.\nThe locale can be read with `AtomicStr::as_str()`.\n`AtomicStr::as_str()` does not increment the usage counter of the `Arc`.\n\nIf the locale is changed in one thread, another thread can have a stale -- possibly already freed --\nreference to the stored string.",
"id": "RUSTSEC-2024-0007",
"modified": "2024-02-10T15:57:43Z",
"published": "2024-01-19T12:00:00Z",
"references": [
{
"type": "PACKAGE",
"url": "https://crates.io/crates/rust-i18n-support"
},
{
"type": "ADVISORY",
"url": "https://rustsec.org/advisories/RUSTSEC-2024-0007.html"
},
{
"type": "REPORT",
"url": "https://github.com/longbridgeapp/rust-i18n/issues/71"
},
{
"type": "WEB",
"url": "https://github.com/longbridgeapp/rust-i18n/pull/72"
},
{
"type": "WEB",
"url": "https://github.com/longbridgeapp/rust-i18n/releases/tag/v3.0.1"
}
],
"related": [],
"severity": [],
"summary": "Use-after-free when setting the locale"
}
Loading…
Loading…
Sightings
| Author | Source | Type | Date |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
Loading…