VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2021-12-24 20:52:54 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2021-12-24 21:21:00 +0100
commit2f45be1219d0faf4d40ec6c19b127c54ba479643 (patch)
tree1cabf0627de6e5162a2e2cd750cca4f3fc269e6c
parente373e72cda2a3565fb5efed7c8e444dd92e72c94 (diff)
downloadVeraCrypt-2f45be1219d0faf4d40ec6c19b127c54ba479643.tar.gz
VeraCrypt-2f45be1219d0faf4d40ec6c19b127c54ba479643.zip
MacOSX: make sure that no files inside VeraCrypt application bundle are world-writable.
Currently, documentation HTML files and XML language files embedded inside VeraCrypt application bundle are world-writable.
-rwxr-xr-xsrc/Setup/MacOSX/postinstall.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Setup/MacOSX/postinstall.sh b/src/Setup/MacOSX/postinstall.sh
index 7ce14ffc..3db36d82 100755
--- a/src/Setup/MacOSX/postinstall.sh
+++ b/src/Setup/MacOSX/postinstall.sh
@@ -4,5 +4,7 @@ if !([ -e "/usr/local/lib/libfuse.2.dylib" ])
then
ln -s /usr/local/lib/libosxfuse.2.dylib /usr/local/lib/libfuse.2.dylib
fi
-
+
+chmod -R o-w /Applications/VeraCrypt.app
+
exit 0