diff --git a/src/read.rs b/src/read.rs index 83e708f3..8e80ce13 100644 --- a/src/read.rs +++ b/src/read.rs @@ -711,7 +711,7 @@ impl ZipArchive { { // 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(()) }