RUSTSEC-2021-0126

Source
https://rustsec.org/advisories/RUSTSEC-2021-0126
Import Source
https://github.com/rustsec/advisory-db/blob/osv/crates/RUSTSEC-2021-0126.json
Aliases
Published
2021-11-29T12:00:00Z
Modified
2023-11-08T04:07:23.363783Z
Details

When running in debug mode and the debug-embed (off by default) feature is not enabled, the generated get method does not check that the input path is a child of the folder given.

This allows attackers to read arbitrary files in the file system if they have control over the filename given. The following code will print the contents of your /etc/passwd if adjusted with a correct number of ../s depending on where it is run from.

#[derive(rust_embed::RustEmbed)]
#[folder = "src/"]
pub struct Asset;

fn main() {
    let d = Asset::get("../../../etc/passwd").unwrap().data;
    println!("{}", String::from_utf8_lossy(&d));
}

The flaw was corrected by canonicalizing the input filename and ensuring that it starts with the canonicalized folder path.

References

Affected packages

crates.io / rust-embed

Package

Affected ranges

Type
SEMVER
Events
Introduced
0.0.0-0
Fixed
6.3.0

Ecosystem specific

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

Database specific

{
    "cvss": null,
    "informational": null,
    "categories": [
        "file-disclosure"
    ]
}