Compare commits

...

2 commits

Author SHA1 Message Date
sid
b9736a5f50 Merge pull request 'fix CVE-2026-43500' (#38) from develop into release-25.11
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 5s
Reviewed-on: #38
2026-05-09 09:02:10 +02:00
sid
997c4a98dc fix CVE-2026-43500
All checks were successful
Flake check / flake-check (pull_request) Successful in 23s
Build tests / build-hosts (pull_request) Successful in 29s
2026-05-09 08:39:38 +02:00

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"
];
}