From 137672cb29a264412211cc20b78f540308a221d3 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Fri, 10 May 2024 16:25:31 -0700 Subject: [PATCH] fix: Remove a window when an extracted directory might be unexpectedly listable and/or `cd`able by non-owners --- src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(()) }