fix: Remove a window when an extracted directory might be unexpectedly listable and/or cd
able by non-owners
This commit is contained in:
parent
c0691ec1e5
commit
137672cb29
1 changed files with 1 additions and 1 deletions
|
@ -711,7 +711,7 @@ impl<R: Read + Seek> ZipArchive<R> {
|
|||
{
|
||||
// Dirs must be writable until all normal files are extracted
|
||||
use std::os::unix::fs::PermissionsExt;
|
||||
std::fs::set_permissions(outpath.as_ref(), std::fs::Permissions::from_mode(0o755))?;
|
||||
std::fs::set_permissions(outpath.as_ref(), std::fs::Permissions::from_mode(0o700))?;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue