- https://github.com/Benjamin-Loison
- Joined on
2022-10-16
Block a user
Make my SSH
alias
es prefer LAN over Internet but with a single command
Related to Benjamin_Loison/bash/issues/25.
Change home folder without
root
access
Benjamin_Loison
commented on issue Benjamin_Loison/Verified_repositories#4
2025-02-23 20:51:25 +01:00
Is such a concept of web of trust for gits already exist?
Benjamin_Loison
commented on issue Benjamin_Loison/Verified_repositories#3
2025-02-23 15:50:24 +01:00
Repositories that I should verify (at least to some extent)
Remember permanently *Are you sure you want to move "..." to the trash?*
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…
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.
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.
How to make a user able without
root
to share a folder with given other user(s)
DuckDuckGo search Linux allow traversing directory.
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…
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
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
...
…
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…
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…
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…
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
How to make a user able without
root
to share a folder with given other user(s)
DuckDuckGo search Linux remove ACL.
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.
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::---