Your RSA-2048 keys break in 2030. Find every one of them before attackers do.
🐹 Go

GHSA-wj2j-qwcf-cfcc

HIGH

IncusOS has a LUKS encryption bypass due to insufficient TPM policy

Also known asCVE-2026-32606GO-2026-4704
Published
Mar 16, 2026
Updated
Mar 26, 2026
Affected
1 pkg
Patched
1 / 1
Exploits
None indexed

EPSS Exploitation Probability

via FIRST.org ↗
0.1%probability of exploitation in next 30 days
Lower Risk4th percentile+0.13%
0.00%0.21%0.43%0.64%0.0%0.0%0.0%0.1%Apr 26Jun 26Jun 26

EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.

Blast Radius

1 pkg affected
🐹github.com/lxc/incus-os/incus-osd

Real-time download stats are indexed for npm and PyPI packages. This vulnerability affects Go packages — download data is not available via public APIs for these ecosystems.

Description

The default configuration of systemd-cryptenroll as used by IncusOS through mkosi allows for an attacker with physical access to the machine to access the encrypted data without requiring any interaction by the system's owner or any tampering of Secure Boot state or kernel (UKI) boot image.

That's because in this configuration, the LUKS key is made available by the TPM so long as the system has the expected PCR7 value and the PCR11 policy matches. That default PCR11 policy importantly allows for the TPM to release the key to the booted system rather than just from the initrd part of the signed kernel image (UKI).

The attack relies on the attacker being able to substitute the original encrypted root partition for one that they control. By doing so, the system will prompt for a recovery key on boot, which the attacker has defined and can provide, before booting the system using the attacker's root partition rather than the system's original one.

The attacker only needs to put a systemd unit starting on system boot within their root partition to have the system run that logic on boot. That unit will then run in an environment where the TPM will allow for the retrieval of the encryption key of the real root disk, allowing the attacker to steal the LUKS volume key (immutable master key) and then use it against the real root disk, altering it or getting data out before putting the disk back the way it was and returning the system without a trace of this attack having happened.

This is all possible because the system will have still booted with Secure Boot enabled, will have measured and ran the expected bootloader and kernel image (UKI). The initrd selects the root disk based on GPT partition identifiers making it possible to easily substitute the real root disk for an attacker controlled one. This doesn't lead to any change in the TPM state and therefore allows for retrieval of the LUKS key by the attacker through a boot time systemd unit on their alternative root partition.

Reproducing steps are effectively:

  • Shutdown the system
  • Alter the GPT partition table to remove the GPT type UUID from the root partition
  • Resize the ESP partition to make space for the attacker's own root partition
  • Create a new LUKS encrypted ext4 partition in the space that was freed up and set the GPT type UUID to that of the original root partition
  • Populate that new root partition with a systemd unit and script which use systemd-cryptenroll to unlock and extract the key from the original root partition
  • Boot the system
  • When prompted, enter the passphrase of the new (attacker) root partition
  • Let the system boot IncusOS
  • Stop the system
  • Recover the encryption key that was extracted by the boot time systemd unit
  • Access the original root partition using it, steal or modify the data
  • Remove the new (attacker) root partition
  • Grow back the ESP
  • Restore the GPT type UUID on the root partition
  • Start the system back up, it will boot as expected with no indication that it was compromised

Impact

This impacts all IncusOS users and is a particular worry for anyone running IncusOS in an unsecured physical environment where the system can be tempered with while stopped or is at risk of being seized or stolen.

Mitigation

The fix we've put in place makes use of PCR15 in addition to the existing PCR7 and PCR11 policies (and PCR4 when running without UEFI Secure Boot). This is significant as PCR15 measures a number of values during system boot, including a measurement of decrypting the root partition while in the initrd.

By binding the LUKS key(s) to an uninitialized PCR15 value, we ensure that only the initrd will be able to automatically decrypt the partitions. As soon as the system boot exits the initrd, whether to boot the legitimate root disk or an attacker's root disk, the TPM state will no longer align with the state required to release the encryption keys, preventing this attack.

https://github.com/lxc/incus-os/pull/954 implements the new logic in IncusOS.

Future improvements

We've had to use PCR15 directly as a way to prevent this attack as unfortunately mkosi doesn't currently support passing the phase option to ukify. The phase option would allow for a different PCR11 policy to be generated which allows for restricting key access only until the end of the initrd execution.

Being able to use this mechanism would provide a cleaner/simpler solution but it's not currently possible due to lack of mkosi support.

https://github.com/systemd/mkosi/issues/4109

Patches

IncusOS version 202603142010 (2026/03/14 20:10 UTC) includes the new PCR15 logic and will automatically update the TPM policy on boot.

Anyone suspecting that their system may have been physically accessed while shut down should perform a full system wipe and reinstallation as only that will rotate the LUKS volume key and prevent subsequent access to the encrypted data should the system have been previously compromised.

Workarounds

There are no known workarounds other than updating to a version with corrected logic which will automatically rebind the LUKS keys to the new set of TPM registers and prevent this from being exploited.

Thanks

This was brought to our attention by Linux Containers forum user U-00F8 who referenced a public January 2025 article by oddlama describing a similar attack on systems using the default systemd-cryptenroll setup.

We'd also like to thank Lennart Poettering for his assistance in finding a way to quickly mitigate this attack.

Affected Packages

1 total 1 fixed
EcosystemPackageVulnerable rangeFix
🐹Gogithub.com/lxc/incus-os/incus-osdall versions0.0.0-20260313012803-e3b35f230d23

Detection & mitigation playbook

Open-source dependency
  1. Detect

    Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for github.com/lxc/incus-os/incus-osd. O3's reachability analysis confirms whether the vulnerable code path is actually invoked in your application, so you act on real exposure instead of every transitive match.

  2. Fix

    Update github.com/lxc/incus-os/incus-osd to 0.0.0-20260313012803-e3b35f230d23 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-wj2j-qwcf-cfcc is resolved across your whole dependency graph.

  3. Workarounds

    If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.

  4. How O3 protects you

    O3 pinpoints whether GHSA-wj2j-qwcf-cfcc is reachable in your code and exactly where to fix it, then blocks exploitation in production at runtime until the patched version is deployed.

Tailored to GHSA-wj2j-qwcf-cfcc. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.

Frequently Asked Questions

The default configuration of systemd-cryptenroll as used by IncusOS through mkosi allows for an attacker with physical access to the machine to access the encrypted data without requiring any interaction by the system's owner or any tampering of Secure Boot state or kernel (UKI) boot image. That's because in this configuration, the LUKS key is made available by the TPM so long as the system has the expected PCR7 value and the PCR11 policy matches. That default PCR11 policy importantly allows for the TPM to release the key to the booted system rather than just from the initrd part of the signe
O3 Security · Impact-Aware SCA

Is GHSA-wj2j-qwcf-cfcc in your dependencies?

O3 detects GHSA-wj2j-qwcf-cfcc across Go dependencies and uses function-level reachability to confirm whether the vulnerable code path is actually reachable — not just present. No false positives.