Benjamin_Loison opened issue Benjamin_Loison/linux#68 2025-02-25 11:42:41 +01:00
Change home folder without root access
Benjamin_Loison opened issue Benjamin_Loison/xviewer#8 2025-02-23 00:45:08 +01:00
Remember permanently *Are you sure you want to move "..." to the trash?*
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 14:06:32 +01:00
How to make a user able without root to share a folder with given other user(s)
See the message:
-----BEGIN PGP MESSAGE-----

hF4DTQa9Wom5MBgSAQdAnqhq/RFtklAZ9dEWBjGKpxjR0fMaiLvG9oTa7Slp+l0w
VvXPJiZ2+hJqUpcZfl1OYUFT1ivhJZcQdcLKnmtT5JhUy…
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:54:40 +01:00
How to make a user able without root to share a folder with given other user(s)

I verified the metadata leak issue from a fresh environment.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:50:28 +01:00
How to make a user able without root to share a folder with given other user(s)

The Super User answer 792908 seems to show how to leak metadata of files in parent folders only to the given user.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:46:21 +01:00
How to make a user able without root to share a folder with given other user(s)

DuckDuckGo search Linux allow traversing directory.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:44:35 +01:00
How to make a user able without root to share a folder with given other user(s)

As user_2:

ls -lh /home/user_0/
ls: cannot open directory '/home/user_0/': Permission denied
ls -lh /home/user_0/test.sh
-rwxr-xr-x 1 user_0…
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:40:17 +01:00
How to make a user able without root to share a folder with given other user(s)
/home/user_0/test.sh:
#!/bin/bash

echo test
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:20:10 +01:00
How to make a user able without root to share a folder with given other user(s)
mkdir new_folder/
ls -lh
Output:
total 52K
drwxr-xr-x 2 benjamin_loison benjamin_loison 4.0K Feb 22 13:17 new_folder
...

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:15:55 +01:00
How to make a user able without root to share a folder with given other user(s)
chmod a+x .

does not return anything.

ls -lah .
Output:
ls -lah .
total 40K
drwx--x--x 4 user_0 user_0 4.0K Feb 22 12:44…
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:11:47 +01:00
How to make a user able without root to share a folder with given other user(s)
setfacl -R -b .

does not return anything.

ls -lah
Output:
total 40K
drwx------ 4 user_0 user_0 4.0K Feb 22 12:44…
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:11:07 +01:00
How to make a user able without root to share a folder with given other user(s)
ls -lah
Output:
total 40K
drwxrwx---+ 4 user_0 user_0 4.0K Feb 22 12:44 .
drwxr-xr-x  6 root   root   4.0K Feb 22 12:28 ..
-rw-rwx---+ 1…
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 13:07:30 +01:00
How to make a user able without root to share a folder with given other user(s)
setfacl --help
Output:
setfacl 2.3.1 -- set file access control lists
Usage: setfacl [-bkndRLP] { -m
Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:55:01 +01:00
How to make a user able without root to share a folder with given other user(s)

DuckDuckGo search Linux remove ACL.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:52:48 +01:00
How to make a user able without root to share a folder with given other user(s)

DuckDuckGo search Linux give access to a user to a folder without giving access to parent folder.

Benjamin_Loison commented on issue Benjamin_Loison/linux#60 2025-02-22 12:51:36 +01:00
How to make a user able without root to share a folder with given other user(s)
getfacl .
Output:
# file: .
# owner: user_0
# group: user_0
user::rwx
user:user_1:rwx
group::---
mask::rwx
other::---