You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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/"]pubstructAsset;fnmain(){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.
rust-embed
5.9.0
>=6.3.0
When running in debug mode and the
debug-embed
(off by default) feature isnot enabled, the generated
get
method does not check that the input path isa 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 onwhere it is run from.
The flaw was corrected by canonicalizing the input filename and ensuring that
it starts with the canonicalized folder path.
See advisory page for additional details.
The text was updated successfully, but these errors were encountered: