Post #2376371
2026-05-02 01:54 UTC
@alanxoc3@tilde.zone i checked it, yes it doesn't have read permision for user
```
~ $ ls -l /bin/su
-rws--x--x 1 root root 59552 Feb 13 2021 /bin/su
~ $
```
Replies (1)
-
@alanxoc3@tilde.zone 2026-05-02 12:43
@aerphanas@tilde.zone If you temporarily change the perm and the exploit shows you are affected, it is still probably a good idea to run the mitigation command. ``` chmod o+r /bin/su # then test the exploit chmod o-r /bin/su ``` Because there could be another executable that could cause the same problem. But it's your computer, so completely your decision.