fix CVE-2026-43500 #38

Merged
sid merged 1 commit from develop into release-25.11 2026-05-09 09:02:10 +02:00
Showing only changes of commit 997c4a98dc - Show all commits

View file

@ -5,4 +5,16 @@
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.18.22") (
lib.mkDefault pkgs.linuxPackages_6_18
);
# fix CVE-2026-43500
boot.extraModprobeConfig = ''
install esp4 ${pkgs.coreutils}/bin/false
install esp6 ${pkgs.coreutils}/bin/false
install rxrpc ${pkgs.coreutils}/bin/false
'';
boot.blacklistedKernelModules = [
"esp4"
"esp6"
"rxrpc"
];
}