2019-12-19 12:01:33 -05:00
|
|
|
## Copyright (C) 2012 - 2019 ENCRYPTED SUPPORT LP <adrelanos@riseup.net>
|
|
|
|
## See the file COPYING for copying conditions.
|
|
|
|
|
2019-12-20 05:54:16 -05:00
|
|
|
## Please use "/etc/permission-hardening.d/50_user.conf" or
|
|
|
|
## "/usr/local/etc/permission-hardening.d/50_user.conf" for your custom
|
|
|
|
## configuration. When security-misc is updated, this file may be overwritten.
|
|
|
|
|
2019-12-08 11:50:11 -05:00
|
|
|
## File permission hardening.
|
|
|
|
##
|
|
|
|
## Syntax:
|
|
|
|
## [filename] [mode] [owner] [group] [capability]
|
|
|
|
##
|
2019-12-19 12:01:33 -05:00
|
|
|
## To remove all SUID/SGID binaries in a directory, you can use the "nosuid"
|
|
|
|
## argument.
|
2019-12-20 03:45:01 -05:00
|
|
|
|
2019-12-20 13:02:33 -05:00
|
|
|
######################################################################
|
|
|
|
# SUID exact match whitelist
|
|
|
|
######################################################################
|
|
|
|
|
2019-12-20 12:32:36 -05:00
|
|
|
## TODO: white spaces inside file name untested
|
2019-12-20 13:02:33 -05:00
|
|
|
|
2019-12-20 08:13:23 -05:00
|
|
|
/usr/bin/sudo whitelist
|
2019-12-20 09:48:06 -05:00
|
|
|
/bin/sudo whitelist
|
2019-12-20 08:13:23 -05:00
|
|
|
/usr/bin/bwrap whitelist
|
2019-12-20 09:48:06 -05:00
|
|
|
/bin/bwrap whitelist
|
2019-12-20 08:13:23 -05:00
|
|
|
/usr/lib/policykit-1/polkit-agent-helper-1 whitelist
|
|
|
|
/usr/lib/dbus-1.0/dbus-daemon-launch-helper whitelist
|
|
|
|
/usr/lib/spice-gtk/spice-client-glib-usb-acl-helper whitelist
|
|
|
|
/usr/lib/x86_64-linux-gnu/utempter/utempter whitelist
|
2019-12-20 13:07:01 -05:00
|
|
|
/usr/lib/chromium/chrome-sandbox whitelist
|
2019-12-20 08:13:23 -05:00
|
|
|
|
2019-12-20 12:50:35 -05:00
|
|
|
## There is a controversy about firejail but those who choose to install it
|
|
|
|
## should be able to use it.
|
|
|
|
## https://www.whonix.org/wiki/Dev/Firejail#Security
|
|
|
|
/usr/bin/firejail whitelist
|
|
|
|
|
2019-12-20 13:02:33 -05:00
|
|
|
######################################################################
|
|
|
|
# SUID exact match whitelist - research required
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
## TODO: research required
|
2019-12-20 12:59:27 -05:00
|
|
|
|
2019-12-20 12:47:10 -05:00
|
|
|
## https://github.com/QubesOS/qubes-core-agent-linux/blob/master/qubes-rpc/qfile-unpacker.c
|
|
|
|
/usr/lib/qubes/qfile-unpacker whitelist
|
|
|
|
|
2019-12-20 12:59:27 -05:00
|
|
|
## https://manpages.debian.org/buster/xserver-xorg-legacy/Xorg.wrap.1.en.html
|
|
|
|
## https://lwn.net/Articles/590315/
|
|
|
|
/usr/lib/xorg/Xorg.wrap whitelist
|
|
|
|
|
2019-12-20 13:02:33 -05:00
|
|
|
######################################################################
|
|
|
|
# SUID regex match whitelist - research required
|
|
|
|
######################################################################
|
2019-12-20 12:59:27 -05:00
|
|
|
|
2019-12-20 12:57:24 -05:00
|
|
|
## TODO: white spaces inside file name untested
|
2019-12-20 13:02:33 -05:00
|
|
|
|
2019-12-20 12:57:24 -05:00
|
|
|
/usr/lib/virtualbox/ matchwhitelist
|
|
|
|
|
2019-12-20 13:02:33 -05:00
|
|
|
######################################################################
|
|
|
|
# Permission Hardening
|
|
|
|
######################################################################
|
|
|
|
|
2019-12-08 11:50:11 -05:00
|
|
|
/home/ 0755 root root
|
|
|
|
/home/user/ 0700 user user
|
|
|
|
/root/ 0700 root root
|
|
|
|
/boot/ 0700 root root
|
2019-12-20 05:57:41 -05:00
|
|
|
/etc/permission-hardening.d 0600 root root
|
|
|
|
/usr/local/etc/permission-hardening.d 0600 root root
|
2019-12-19 12:01:33 -05:00
|
|
|
|
2019-12-20 13:02:33 -05:00
|
|
|
######################################################################
|
|
|
|
# SUID/SGID Removal
|
|
|
|
######################################################################
|
|
|
|
|
2019-12-19 12:01:33 -05:00
|
|
|
## Remove all SUID/SGID binaries/libraries.
|
2019-12-20 13:02:33 -05:00
|
|
|
|
2019-12-19 12:01:33 -05:00
|
|
|
/bin/ nosuid
|
|
|
|
/usr/bin/ nosuid
|
|
|
|
/usr/local/bin/ nosuid
|
|
|
|
/sbin/ nosuid
|
|
|
|
/usr/sbin/ nosuid
|
|
|
|
/usr/local/sbin/ nosuid
|
2019-12-20 05:29:37 -05:00
|
|
|
|
2019-12-20 12:34:07 -05:00
|
|
|
## No SUID binaries there by default.
|
2019-12-20 05:29:37 -05:00
|
|
|
## remount-secure mounts it with nosuid anyhow.
|
|
|
|
## Therefore no processing it here.
|
|
|
|
#/lib/ nosuid
|
|
|
|
|
2019-12-19 12:01:33 -05:00
|
|
|
/lib32/ nosuid
|
|
|
|
/lib64/ nosuid
|
|
|
|
/usr/lib/ nosuid
|
|
|
|
/usr/lib32/ nosuid
|
|
|
|
/usr/lib64/ nosuid
|
|
|
|
/usr/local/lib/ nosuid
|
|
|
|
/usr/local/lib32/ nosuid
|
|
|
|
/usr/local/lib64/ nosuid
|