CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2023-43633

Trusted Boot, Untrusted Config: Breaking EVE OS Encryption (CVE-2023-43633)

Amit Schendel
Amit Schendel
Senior Security Researcher

Feb 4, 2026·6 min read·20 visits

Executive Summary (TL;DR)

Physical attackers can modify an unmeasured JSON config file to enable SSH and debugging features on EVE OS devices. Because the config wasn't part of the TPM sealing policy, the device still decrypts the secure vault during boot, granting the attacker root access to sensitive data. Fixed in version 9.5.0.

A critical lapse in the Trusted Platform Module (TPM) sealing policy of LF-Edge EVE OS allowed attackers with physical access to inject malicious configurations—enabling SSH and bypassing authentication—while still successfully unsealing the disk encryption keys. It turns out that measuring the operating system kernel is useless if you don't also measure the configuration file that tells the kernel to open the front door.

The Hook: When "Secure Boot" Misses a Spot

Edge computing is the Wild West of IT. You have expensive, sensitive boxes sitting in factories, wind turbines, and utility closets, often miles away from a security guard. To protect these devices, we rely on Measured Boot and Full Disk Encryption (FDE) backed by a Trusted Platform Module (TPM). The promise is simple: if anyone touches the hardware or tampers with the bootloader, the cryptographic measurements (PCRs) change, the TPM refuses to release the decryption key, and the device turns into a useless brick. Safe, right?

Enter CVE-2023-43633. LF-Edge EVE OS, a popular operating system for edge virtualization, had a gaping hole in this logic. While it meticulously measured the kernel and the initrd to ensure the OS code hadn't been tampered with, it completely ignored a specific configuration partition.

This is the equivalent of a bank vault that checks your retina and fingerprints (the OS code) but ignores the fact that you're holding a handwritten note saying "I am the manager, let me in" (the config file). By placing a simple JSON file on the disk, an attacker can tell the OS to drop its shields, and the TPM—oblivious to the change—happily hands over the keys to the kingdom.

The Flaw: A Tale of Two PCRs

To understand this failure, you have to understand TPM Sealing. You don't just "measure" software into Platform Configuration Registers (PCRs); you have to seal your secrets against those specific registers. If you measure the bootloader into PCR 4 but don't tell the TPM "Only release the key if PCR 4 matches X," then the measurement is just a number in a log, not a security control.

EVE OS has a mechanism to override global settings using a file located at /config/GlobalConfig/global.json. This feature is intended for legitimate provisioning and debugging. However, in vulnerable versions, this file resided on a partition that was either mutable or effectively ignored by the TPM's sealing policy.

Here is the logic failure:

  1. Boot Process Starts: The BIOS, Bootloader, and Kernel are measured. PCRs 0-9 are extended.
  2. The Check: The TPM checks its sealing policy. It sees that PCRs 0-9 match the expected "Golden State."
  3. The Unseal: The TPM releases the disk encryption key. The encrypted vault is mounted.
  4. The Betrayal: The OS mounts the /config partition, reads the malicious global.json, and executes instructions to enable SSH and disable authentication.

The system was "secure" up until the millisecond after it decrypted the data, at which point it voluntarily surrendered to the attacker defined in the unmeasured config file.

The Code: The Missing Integer

The fix reveals exactly how simple the oversight was. In the world of Go and TPMs, everything comes down to a struct definition. The vulnerability existed because the list of PCRs used to seal the DiskKey was missing the index for the configuration measurement (PCR 13 or 14, depending on the version).

In pkg/pillar/evetpm/tpm.go, the developer defines which PCRs matter. Here is what the patch looked like for the initial fix (commit aa3501d6c57206ced222c33aea15a9169d629141):

// Before: PCR 13 (config) is ignored
DiskKeySealingPCRs = tpm2.PCRSelection{Hash: tpm2.AlgSHA1, PCRs: []int{0, 1, 2, 3, 4, 6, 7, 8, 9}}
 
// After: PCR 13 is enforced
DiskKeySealingPCRs = tpm2.PCRSelection{Hash: tpm2.AlgSHA1, PCRs: []int{0, 1, 2, 3, 4, 6, 7, 8, 9, 13}}

But wait, it gets better. This was fixed in version 8.6.0. Then, in the 9.x branch, the developers moved the measurement to PCR 14 during a refactor... and forgot to update the sealing policy again. This regression meant that versions 9.0.0 through 9.4.x were vulnerable all over again. It's a classic case of "security by spreadsheet"—if the dev forgets to add the number to the list, the cryptography is worthless.

The Exploit: Bypassing the Vault

Exploiting this requires physical access, but for edge devices, that's part of the threat model. Here is how an attacker turns a locked box into an open book:

  1. Preparation: The attacker unscrews the chassis and removes the storage medium (SSD/SD Card) or boots a live Linux USB stick.
  2. Injection: They mount the unencrypted configuration partition and create the file /config/GlobalConfig/global.json. The content is a shopping list of bad ideas:
{
  "debug.enable.ssh": true,
  "debug.enable.usb": true,
  "app.allow.vnc": true,
  "authorized_keys": "ssh-rsa AAAAB3... [ATTACKER_KEY]"
}
  1. The Boot: The attacker puts the storage back and powers on the device.

  2. The Bypass:

    • The GRUB bootloader runs (Measured: OK).
    • The Kernel loads (Measured: OK).
    • TPM Unseals Vault (Because the config partition wasn't in the policy).
    • Userland starts, sees debug.enable.ssh: true, and starts the SSH daemon with the attacker's key.
  3. Profit: The attacker SSHs into the device. Since the vault was successfully unsealed by the TPM, they have full read/write access to all encrypted secrets, certificates, and application data.

The Impact: Why "Physical Access" Isn't an Excuse

A common rebuttal in security is, "If they have physical access, it's game over anyway." This is wrong. The entire point of TPM-backed Full Disk Encryption (FDE) is to secure data-at-rest even against physical theft. If a thief steals an ATM or a secure edge gateway, they should ideally end up with a pile of encrypted garbage.

CVE-2023-43633 breaks that contract. It allows the device to boot into a fully functional state under the control of the attacker. This allows for:

  • Data Exfiltration: Extracting proprietary algorithms, customer data, or VPN keys.
  • Lateral Movement: Using the trusted edge node as a pivot point to attack the upstream cloud infrastructure.
  • Persistence: Installing deeper backdoors (like kernel modules) that might persist even after the config file is removed, assuming the boot partition isn't properly verified on subsequent boots.

The Fix: Measuring the Measurer

The remediation involves two critical steps that had to be applied to the codebase:

  1. Measure the Filesystem: A new GRUB module (measurefs) was introduced (commit 5fef4d92e75838cc78010edaed5247dfbdae1889). This calculates a SHA-256 hash of the /config partition and extends it into the TPM PCR.
  2. Enforce the Measurement: As shown in the code section, the PCR list in evetpm/tpm.go was updated to include the new measurement.

For administrators running EVE OS, the only real fix is to upgrade to version 9.5.0 (or 8.6.0 if you are still on the older branch). If you cannot upgrade, physical security controls (tamper-evident tape, epoxy, locked cabinets) are your only defense against this specific attack vector.

Official Patches

LF-EdgeEVE OS 9.5.0 Release Notes

Fix Analysis (2)

Technical Appendix

CVSS Score
8.8/ 10
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
EPSS Probability
0.03%
Top 93% most exploited

Affected Systems

LF-Edge EVE OS < 8.6.0LF-Edge EVE OS 9.0.0 - 9.4.x

Affected Versions Detail

Product
Affected Versions
Fixed Version
EVE OS
LF-Edge
< 8.6.08.6.0
EVE OS
LF-Edge
>= 9.0.0, <= 9.4.x9.5.0
AttributeDetail
CWECWE-522 (Insufficiently Protected Credentials)
CVSS v3.18.8 (High)
Attack VectorPhysical
ConfidentialityHigh (Full Vault Access)
IntegrityHigh (System Compromise)
StatusPatched (Regression fixed in 9.5.0)

MITRE ATT&CK Mapping

T1200Hardware Additions
Initial Access
T1542.001Pre-OS Boot: System Firmware
Defense Evasion
T1552.001Unsecured Credentials: Credentials In Files
Credential Access
CWE-522
Insufficiently Protected Credentials

Known Exploits & Detection

ASRG AdvisoryDetailed write-up on the measured boot bypass

Vulnerability Timeline

Initial partial fix applied (v8.6.0)
2022-07-15
Public Advisory Released
2023-09-21
Final Fix released in version 9.5.0
2023-09-21

References & Sources

  • [1]Patch Commit: Sealing Policy Update
  • [2]NIST NVD Entry

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•1 day ago•CVE-2026-9354
6.9

CVE-2026-9354: Arbitrary Mass Mention Bypass in NousResearch hermes-agent Slack and Mattermost Adapters

A vulnerability in the Slack and Mattermost platform adapters for NousResearch hermes-agent permits an unauthenticated remote attacker to execute arbitrary mass mentions. By leveraging prompt injection, an attacker can bypass output sanitization logic and trigger workspace-wide notification exhaustion.

Alon Barad
Alon Barad
22 views•6 min read
•2 days ago•CVE-2026-9306
6.3

CVE-2026-9306: Unauthenticated Insecure Direct Object Reference (IDOR) in QuantumNous new-api Midjourney Relay

CVE-2026-9306 is a critical unauthenticated Insecure Direct Object Reference (IDOR) vulnerability located in the QuantumNous new-api application, affecting versions up to and including 0.12.1. The flaw is caused by improper middleware ordering combined with a lack of object-level authorization checks. This allows remote, unauthenticated attackers to retrieve sensitive Midjourney images belonging to other users by supplying a valid task identifier.

Amit Schendel
Amit Schendel
7 views•5 min read
•2 days ago•GHSA-GGXF-37HM-9WQF
6.5

GHSA-GGXF-37HM-9WQF: Session Leakage via Unsafe Challenge Path Parsing in instagrapi

The instagrapi library prior to version 2.6.9 contains an improper input validation vulnerability within its challenge handling mechanism. Maliciously crafted server responses can manipulate the client into forwarding session cookies and credentials to an external attacker-controlled domain.

Amit Schendel
Amit Schendel
19 views•6 min read
•3 days ago•GHSA-QQQM-5547-774X
9.1

GHSA-QQQM-5547-774X: Unauthenticated Path Traversal in FileBrowser Quantum PATCH Handler

GHSA-QQQM-5547-774X is a critical path traversal vulnerability in the FileBrowser Quantum application, specifically within the Go backend package. The vulnerability resides in the HTTP handler responsible for processing bulk file modifications via the public API. Unauthenticated attackers can exploit an order-of-operations flaw in the path sanitization logic to bypass intended directory restrictions. This allows adversaries to arbitrarily read, move, and overwrite files on the underlying filesystem by supplying specially crafted HTTP PATCH requests.

Alon Barad
Alon Barad
4 views•6 min read
•3 days ago•CVE-2026-8723
5.3

CVE-2026-8723: Synchronous Denial of Service in qs npm Package via TypeError

The qs query string parsing and serialization library for Node.js is vulnerable to a synchronous Denial of Service (DoS) attack. The vulnerability manifests as a process-terminating TypeError when processing arrays with null or undefined elements under specific configuration parameters.

Amit Schendel
Amit Schendel
32 views•7 min read
•3 days ago•GHSA-7M8F-HGJQ-8GC9
7.5

GHSA-7M8F-HGJQ-8GC9: Pre-Authentication Denial of Service via Insecure Deserialization Order in aiosend

The aiosend library prior to version 3.0.6 contains a pre-authentication Denial of Service (DoS) vulnerability in its webhook handling mechanism. The software processes and deserializes incoming JSON payloads before verifying the cryptographic signature, allowing unauthenticated attackers to exhaust server CPU and memory resources by sending large, complex payloads.

Amit Schendel
Amit Schendel
3 views•6 min read