mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
3e592f5959
Commit cf0dbc906
recently added the ability for setuid binaries to be
located in /usr/Tests. This should really now be read only to mitigate
the potential misuse of any of the setuid binaries.
14 lines
504 B
Plaintext
14 lines
504 B
Plaintext
# Root file system. This is a fake entry which gets ignored by `mount -a`;
|
|
# the actual logic for mounting root is in the kernel.
|
|
/dev/hda / ext2 nodev,nosuid,ro
|
|
# Remount /bin, /root, and /home while adding the appropriate permissions.
|
|
/bin /bin bind bind,nodev,ro
|
|
/etc /etc bind bind,nodev,nosuid
|
|
/home /home bind bind,nodev,nosuid
|
|
/root /root bind bind,nodev,nosuid
|
|
/var /var bind bind,nodev,nosuid
|
|
/www /www bind bind,nodev,nosuid
|
|
/usr/Tests /usr/Tests bind bind,nodev,ro
|
|
|
|
none /tmp tmp nodev,nosuid
|