3/25/2026 at 4:16:44 PM
This comment is particularly concerning (as is the functionality regression implied by this new "more secure" approach):> This means for example, that an encrypted system must use an ext4 /boot partition; it is no longer possible to encrypt the /boot partition.
So, they want to let attackers modify /boot, including grub.conf and the kernel command line? This is better? Look at all these fun knobs attackers will be able to turn!
https://www.kernel.org/doc/Documentation/x86/x86_64/boot-opt...
This lets you disable machine check exceptions + the iommu. That means it'll force people to use a configuration that lets attackers stick a memory probe hardware device into the system + bypass a bunch of hardware security checks. Nice!
I also found module.sig_enforce which lets the attacker disable kernel module signature verification. Sadly, I couldn't find anything that lets you directly load a kernel module from /boot.
However, init.rd lives in /boot. I wonder if its signature is verified or not. At the very least, this approach implies that attackers can piecemeal downgrade stuff early in the boot process.
by hedora
3/26/2026 at 6:39:41 PM
They can turn those knobs anyway, you need something like Secure Boot and measured boot to ensure an untampered environment.Simple encryption doesn't provide this. An attacker can just as well replace your GRUB.
An encrypted boot partition is extremely rare in practice. It's not done by any installers. It's not the FDE people complaining about this think they've enabled.
by Avamander
3/25/2026 at 7:03:55 PM
encryption does not protect against malicious modification; authentication does.by evan_a_a
3/25/2026 at 9:23:19 PM
If you want to avoid the initrd loophole then you will want to look into UKI images. These extend the secure boot signature to include the kernel and ramdisk:https://uapi-group.org/specifications/specs/unified_kernel_i...
by jburgess777
3/25/2026 at 6:22:30 PM
All those switches and we still can't disable kernel lockdown when hibernation is enabled with secure boot.by izacus