RUSTSEC-2018-0022

Source
https://rustsec.org/advisories/RUSTSEC-2018-0022
Import Source
https://github.com/rustsec/advisory-db/blob/osv/crates/RUSTSEC-2018-0022.json
Aliases
Published
2018-08-22T12:00:00Z
Modified
2023-11-08T04:14:07.505706Z
Details

Uninit memory is used as a RNG seed in temporary

The following function is used as a way to get entropy from the system, which does operations on and exposes uninit memory, which is UB.

fn random_seed(_: &Path, _: &str) -> [u64; 2] {
    use std::mem::uninitialized as rand;
    unsafe { [rand::<u64>() ^ 0x12345678, rand::<u64>() ^ 0x87654321] }
}

This has been resolved in the 0.6.4 release.

The crate is not intended to be used outside of a testing environment.

For a general purpose crate to create temporary directories, tempfile is an alternative for this crate.

References

Affected packages

crates.io / temporary

Package

Name
temporary

Affected ranges

Type
SEMVER
Events
Introduced
0.3.0
Fixed
0.6.4

Ecosystem specific

{
    "affects": {
        "os": [],
        "functions": [],
        "arch": []
    }
}

Database specific

{
    "cvss": null,
    "informational": null,
    "categories": [
        "memory-exposure"
    ]
}