mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-11-26 18:16:29 -05:00
Merge remote-tracking branch 'ArrayBolt3/arraybolt3/trixie'
This commit is contained in:
commit
0a61107b5a
12 changed files with 23 additions and 53 deletions
|
|
@ -412,12 +412,13 @@ Miscellaneous modules:
|
|||
|
||||
`/usr/lib/systemd/pstore.conf.d/30_security-misc.conf`
|
||||
|
||||
- An initramfs hook sets the sysctl values in `/etc/sysctl.conf` and
|
||||
- An initramfs hook used to set the sysctl values in `/etc/sysctl.conf` and
|
||||
`/etc/sysctl.d` before init is executed so sysctl hardening is enabled as
|
||||
early as possible. This is implemented for `initramfs-tools` only because
|
||||
early as possible. This was implemented for `initramfs-tools` only because
|
||||
this is not needed for `dracut` as `dracut` does that by default, at
|
||||
least on `systemd` enabled systems. Not researched for non-`systemd` systems
|
||||
by the author of this part of the readme.
|
||||
by the author of this part of the readme. This is no longer implemented for
|
||||
`initramfs-tools` as `initramfs-tools` support has been deprecated.
|
||||
|
||||
## Network hardening
|
||||
|
||||
|
|
|
|||
4
debian/security-misc.postinst
vendored
4
debian/security-misc.postinst
vendored
|
|
@ -89,6 +89,10 @@ case "$1" in
|
|||
|
||||
## migrate permission_hardener state to v2 if applicable
|
||||
migrate_permission_hardener_state
|
||||
|
||||
## Fix usbguard config permissions, this seemingly can't be done
|
||||
## during the unpack stage
|
||||
chmod 0600 /etc/usbguard/rules.d/30_security-misc.conf
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
## Copyright (C) 2012 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
|
||||
## See the file COPYING for copying conditions.
|
||||
|
||||
set -e
|
||||
|
||||
PREREQ=""
|
||||
prereqs()
|
||||
{
|
||||
echo "$PREREQ"
|
||||
}
|
||||
case $1 in
|
||||
prereqs)
|
||||
prereqs
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
. /usr/share/initramfs-tools/hook-functions
|
||||
copy_exec /usr/sbin/sysctl /usr/sbin
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
## Copyright (C) 2012 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
|
||||
## See the file COPYING for copying conditions.
|
||||
|
||||
PREREQ=""
|
||||
prereqs()
|
||||
{
|
||||
echo "$PREREQ"
|
||||
}
|
||||
case $1 in
|
||||
prereqs)
|
||||
prereqs
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
## Write to '/run/initramfs' folder.
|
||||
## https://forums.whonix.org/t/kernel-hardening/7296/435
|
||||
|
||||
sysctl -p ${rootmnt}/etc/sysctl.conf >/dev/null 2> "/run/initramfs/sysctl-initramfs-error.log"
|
||||
sysctl -p ${rootmnt}/etc/sysctl.d/*.conf >/dev/null 2>> "/run/initramfs/sysctl-initramfs-error.log"
|
||||
|
||||
grep -v "unprivileged_userfaultfd" "/run/initramfs/sysctl-initramfs-error.log"
|
||||
|
||||
true
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
## See the file COPYING for copying conditions.
|
||||
|
||||
if [ -z "$XDG_CONFIG_DIRS" ]; then
|
||||
XDG_CONFIG_DIRS="/etc/xdg"
|
||||
XDG_CONFIG_DIRS="/etc:/etc/xdg:/usr/share"
|
||||
fi
|
||||
if ! printf '%s\n' "$XDG_CONFIG_DIRS" | grep -- "/usr/share/security-misc/" >/dev/null 2>/dev/null ; then
|
||||
export XDG_CONFIG_DIRS="/usr/share/security-misc/:$XDG_CONFIG_DIRS"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
## relies solely on the calling user's UID and GID, though this could require
|
||||
## further review.)
|
||||
##
|
||||
## Without this, Xfce fails to start with a dbus-launch error.
|
||||
## Without this, LXQt fails to start with a dbus-launch error.
|
||||
##
|
||||
## TODO: audit pam-tmpdir-helper
|
||||
pam-tmpdir-helper matchwhitelist
|
||||
|
|
|
|||
|
|
@ -26,3 +26,7 @@ disable ensure-shutdown-trigger.service
|
|||
|
||||
## TODO: Disabled due to bug: breaks ISO Live Mode Calamares installer
|
||||
disable emerg-shutdown.service
|
||||
|
||||
## memlockd is needed by emerg-shutdown, but the service is not, the user can
|
||||
## enable this manually if desired.
|
||||
disable memlockd.service
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ Requires=systemd-udevd.service
|
|||
After=systemd-udevd.service
|
||||
Requires=local-fs.target
|
||||
After=local-fs.target
|
||||
ConditionPathExists=!/usr/share/qubes/marker-vm
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
[Unit]
|
||||
Description=Forcibly shut down the system if normal shutdown gets stuck (alternate trigger unit)
|
||||
Documentation=https://github.com/Kicksecure/security-misc
|
||||
ConditionPathExists=!/usr/share/qubes/marker-vm
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ Requires=systemd-udevd.service
|
|||
After=systemd-udevd.service
|
||||
Wants=emerg-shutdown.service
|
||||
After=emerg-shutdown.service
|
||||
ConditionPathExists=!/usr/share/qubes/marker-vm
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
## Copyright (C) 2025 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
|
||||
## See the file COPYING for copying conditions.
|
||||
|
||||
[Unit]
|
||||
ConditionPathExists=/sys/bus/usb
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
# Lock systemd and all of its library dependencies into memory
|
||||
+/usr/bin/systemd
|
||||
+/usr/lib/systemd/systemd
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue