docs: deprecate poor Path sanitization
This commit is contained in:
parent
599640c1eb
commit
d92a06adec
1 changed files with 5 additions and 0 deletions
|
@ -607,6 +607,11 @@ impl<'a> ZipFile<'a> {
|
||||||
|
|
||||||
/// Get the name of the file in a sanitized form. It truncates the name to the first NULL byte,
|
/// Get the name of the file in a sanitized form. It truncates the name to the first NULL byte,
|
||||||
/// removes a leading '/' and removes '..' parts.
|
/// removes a leading '/' and removes '..' parts.
|
||||||
|
#[deprecated(
|
||||||
|
since = "0.5.7",
|
||||||
|
note = "by stripping `..`s from the path, the meaning of paths can change.
|
||||||
|
You must use a sanitization strategy that's appropriate for your input"
|
||||||
|
)]
|
||||||
pub fn sanitized_name(&self) -> ::std::path::PathBuf {
|
pub fn sanitized_name(&self) -> ::std::path::PathBuf {
|
||||||
self.data.file_name_sanitized()
|
self.data.file_name_sanitized()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue