2017-04-06 12:54:45 +00:00
|
|
|
# A profile with most (vanilla) hardening options enabled by default,
|
|
|
|
# potentially at the cost of features and performance.
|
|
|
|
|
2018-07-20 20:56:59 +00:00
|
|
|
{ lib, pkgs, ... }:
|
2017-04-06 12:54:45 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
2018-10-14 22:18:33 +00:00
|
|
|
meta = {
|
|
|
|
maintainers = [ maintainers.joachifm ];
|
|
|
|
};
|
|
|
|
|
2017-04-29 23:22:32 +00:00
|
|
|
boot.kernelPackages = mkDefault pkgs.linuxPackages_hardened;
|
|
|
|
|
2018-11-24 14:13:03 +00:00
|
|
|
nix.allowedUsers = mkDefault [ "@users" ];
|
|
|
|
|
2017-04-06 12:54:45 +00:00
|
|
|
security.hideProcessInformation = mkDefault true;
|
|
|
|
|
2017-04-29 20:46:20 +00:00
|
|
|
security.lockKernelModules = mkDefault true;
|
|
|
|
|
2018-10-14 22:39:26 +00:00
|
|
|
security.allowUserNamespaces = mkDefault false;
|
|
|
|
|
2018-12-16 09:37:36 +00:00
|
|
|
security.protectKernelImage = mkDefault true;
|
|
|
|
|
2018-12-26 21:24:04 +00:00
|
|
|
security.allowSimultaneousMultithreading = mkDefault false;
|
|
|
|
|
2019-07-30 00:24:56 +00:00
|
|
|
security.forcePageTableIsolation = mkDefault true;
|
|
|
|
|
2019-07-19 13:49:37 +00:00
|
|
|
security.virtualisation.flushL1DataCache = mkDefault "always";
|
2018-12-26 21:22:55 +00:00
|
|
|
|
2017-04-06 12:54:45 +00:00
|
|
|
security.apparmor.enable = mkDefault true;
|
|
|
|
|
2017-04-29 15:27:08 +00:00
|
|
|
boot.kernelParams = [
|
2019-01-05 12:47:25 +00:00
|
|
|
# Slab/slub sanity checks, redzoning, and poisoning
|
|
|
|
"slub_debug=FZP"
|
|
|
|
|
|
|
|
# Disable slab merging to make certain heap overflow attacks harder
|
|
|
|
"slab_nomerge"
|
|
|
|
|
2017-04-29 23:22:32 +00:00
|
|
|
# Overwrite free'd memory
|
|
|
|
"page_poison=1"
|
|
|
|
|
2017-04-29 15:27:08 +00:00
|
|
|
# Disable legacy virtual syscalls
|
|
|
|
"vsyscall=none"
|
2019-08-15 16:24:24 +00:00
|
|
|
|
|
|
|
# Enable page allocator randomization
|
|
|
|
"page_alloc.shuffle=1"
|
2017-04-29 15:27:08 +00:00
|
|
|
];
|
|
|
|
|
2017-09-02 23:49:01 +00:00
|
|
|
boot.blacklistedKernelModules = [
|
|
|
|
# Obscure network protocols
|
|
|
|
"ax25"
|
|
|
|
"netrom"
|
|
|
|
"rose"
|
|
|
|
];
|
|
|
|
|
2017-04-06 12:54:45 +00:00
|
|
|
# Restrict ptrace() usage to processes with a pre-defined relationship
|
|
|
|
# (e.g., parent/child)
|
|
|
|
boot.kernel.sysctl."kernel.yama.ptrace_scope" = mkOverride 500 1;
|
|
|
|
|
|
|
|
# Restrict access to kernel ring buffer (information leaks)
|
|
|
|
boot.kernel.sysctl."kernel.dmesg_restrict" = mkDefault true;
|
|
|
|
|
|
|
|
# Hide kptrs even for processes with CAP_SYSLOG
|
|
|
|
boot.kernel.sysctl."kernel.kptr_restrict" = mkOverride 500 2;
|
|
|
|
|
|
|
|
# Unprivileged access to bpf() has been used for privilege escalation in
|
|
|
|
# the past
|
|
|
|
boot.kernel.sysctl."kernel.unprivileged_bpf_disabled" = mkDefault true;
|
|
|
|
|
|
|
|
# Disable bpf() JIT (to eliminate spray attacks)
|
|
|
|
boot.kernel.sysctl."net.core.bpf_jit_enable" = mkDefault false;
|
|
|
|
|
|
|
|
# ... or at least apply some hardening to it
|
|
|
|
boot.kernel.sysctl."net.core.bpf_jit_harden" = mkDefault true;
|
2017-04-30 12:41:56 +00:00
|
|
|
|
2017-08-12 22:17:43 +00:00
|
|
|
# Raise ASLR entropy for 64bit & 32bit, respectively.
|
|
|
|
#
|
|
|
|
# Note: mmap_rnd_compat_bits may not exist on 64bit.
|
|
|
|
boot.kernel.sysctl."vm.mmap_rnd_bits" = mkDefault 32;
|
|
|
|
boot.kernel.sysctl."vm.mmap_rnd_compat_bits" = mkDefault 16;
|
2017-09-02 23:48:46 +00:00
|
|
|
|
|
|
|
# Allowing users to mmap() memory starting at virtual address 0 can turn a
|
|
|
|
# NULL dereference bug in the kernel into code execution with elevated
|
|
|
|
# privilege. Mitigate by enforcing a minimum base addr beyond the NULL memory
|
|
|
|
# space. This breaks applications that require mapping the 0 page, such as
|
|
|
|
# dosemu or running 16bit applications under wine. It also breaks older
|
|
|
|
# versions of qemu.
|
|
|
|
#
|
|
|
|
# The value is taken from the KSPP recommendations (Debian uses 4096).
|
|
|
|
boot.kernel.sysctl."vm.mmap_min_addr" = mkDefault 65536;
|
2019-07-04 16:50:48 +00:00
|
|
|
|
|
|
|
# Disable ftrace debugging
|
|
|
|
boot.kernel.sysctl."kernel.ftrace_enabled" = mkDefault false;
|
2019-07-04 16:51:06 +00:00
|
|
|
|
2019-08-11 11:32:24 +00:00
|
|
|
# Enable strict reverse path filtering (that is, do not attempt to route
|
|
|
|
# packets that "obviously" do not belong to the iface's network; dropped
|
|
|
|
# packets are logged as martians).
|
2019-07-04 16:51:06 +00:00
|
|
|
boot.kernel.sysctl."net.ipv4.conf.all.log_martians" = mkDefault true;
|
2019-08-11 11:32:24 +00:00
|
|
|
boot.kernel.sysctl."net.ipv4.conf.all.rp_filter" = mkDefault "1";
|
2019-07-04 16:51:06 +00:00
|
|
|
boot.kernel.sysctl."net.ipv4.conf.default.log_martians" = mkDefault true;
|
2019-08-11 11:32:24 +00:00
|
|
|
boot.kernel.sysctl."net.ipv4.conf.default.rp_filter" = mkDefault "1";
|
2019-07-04 16:51:06 +00:00
|
|
|
|
|
|
|
# Ignore broadcast ICMP (mitigate SMURF)
|
|
|
|
boot.kernel.sysctl."net.ipv4.icmp_echo_ignore_broadcasts" = mkDefault true;
|
|
|
|
|
|
|
|
# Ignore incoming ICMP redirects (note: default is needed to ensure that the
|
|
|
|
# setting is applied to interfaces added after the sysctls are set)
|
|
|
|
boot.kernel.sysctl."net.ipv4.conf.all.accept_redirects" = mkDefault false;
|
|
|
|
boot.kernel.sysctl."net.ipv4.conf.all.secure_redirects" = mkDefault false;
|
|
|
|
boot.kernel.sysctl."net.ipv4.conf.default.accept_redirects" = mkDefault false;
|
|
|
|
boot.kernel.sysctl."net.ipv4.conf.default.secure_redirects" = mkDefault false;
|
|
|
|
boot.kernel.sysctl."net.ipv6.conf.all.accept_redirects" = mkDefault false;
|
|
|
|
boot.kernel.sysctl."net.ipv6.conf.default.accept_redirects" = mkDefault false;
|
|
|
|
|
|
|
|
# Ignore outgoing ICMP redirects (this is ipv4 only)
|
|
|
|
boot.kernel.sysctl."net.ipv4.conf.all.send_redirects" = mkDefault false;
|
|
|
|
boot.kernel.sysctl."net.ipv4.conf.default.send_redirects" = mkDefault false;
|
2019-07-18 12:00:28 +00:00
|
|
|
|
|
|
|
# Restrict userfaultfd syscalls to processes with the SYS_PTRACE capability
|
|
|
|
boot.kernel.sysctl."vm.unprivileged_userfaultfd" = mkDefault false;
|
2017-04-06 12:54:45 +00:00
|
|
|
}
|