Apple - Why can other users see my files in MY user folder?

This is because Finder creates new folder with default permissions set to 755, or rwxr-xr-x (I agree that's questionable behavior). This means that new folders in your home directory are readable (r) and executable (x) by both users not-only in the same group, but all users on the system.

You can lock down the access to just your user from Finder's Get Info dialog by removing the group access entry and setting the "everyone" entry to "No Access".

Alternately, you can use Terminal to chmod your directories with chmod 700 ~/your_directory to accomplish the same thing.

Tags:

Macos

Security