CVE-2026-1386

6.0 MEDIUM

📋 TL;DR

A UNIX symbolic link following vulnerability in Firecracker's jailer component allows local host users with write access to pre-created jailer directories to overwrite arbitrary host files during jailer startup. This affects Firecracker versions v1.13.1 and earlier, and v1.14.0 on Linux systems when the jailer runs with root privileges.

💻 Affected Systems

Products:
  • Firecracker
Versions: v1.13.1 and earlier, v1.14.0
Operating Systems: Linux
Default Config Vulnerable: ⚠️ Yes
Notes: Only vulnerable when jailer runs with root privileges and attacker has write access to pre-created jailer directories.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete system compromise via arbitrary file overwrite leading to privilege escalation, service disruption, or data destruction.

🟠

Likely Case

Local privilege escalation allowing attackers to modify system files, install backdoors, or access sensitive data.

🟢

If Mitigated

Limited impact if proper access controls restrict write access to jailer directories and jailer runs with minimal privileges.

🌐 Internet-Facing: LOW - This is a local privilege escalation vulnerability requiring local access to the host system.
🏢 Internal Only: MEDIUM - Requires local access and specific write permissions, but could be exploited by malicious insiders or compromised accounts.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Requires local access, write permissions to jailer directories, and understanding of symlink attacks.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: v1.13.2 or v1.14.1

Vendor Advisory: https://github.com/firecracker-microvm/firecracker/security/advisories/GHSA-36j2-f825-qvgc

Restart Required: Yes

Instructions:

1. Stop all Firecracker instances. 2. Upgrade to v1.13.2 or v1.14.1 using package manager or manual download. 3. Restart Firecracker services.

🔧 Temporary Workarounds

Restrict directory permissions

linux

Limit write access to pre-created jailer directories to trusted users only

chmod 750 /path/to/jailer/directories
chown root:trusted_group /path/to/jailer/directories

Run jailer without root

linux

Configure jailer to run with minimal necessary privileges instead of root

🧯 If You Can't Patch

  • Implement strict access controls on jailer directories (chmod 750, appropriate ownership)
  • Audit and monitor all users with write access to jailer directories

🔍 How to Verify

Check if Vulnerable:

Check Firecracker version: firecracker --version. If version is v1.13.1 or earlier, or exactly v1.14.0, system is vulnerable.

Check Version:

firecracker --version

Verify Fix Applied:

Confirm version is v1.13.2 or v1.14.1 or later: firecracker --version

📡 Detection & Monitoring

Log Indicators:

  • Unusual file modification patterns in jailer directories
  • Symlink creation in jailer directories
  • Failed privilege escalation attempts

Network Indicators:

  • None - this is a local attack

SIEM Query:

search 'symlink' AND 'jailer' OR 'firecracker' in system logs

🔗 References

📤 Share & Export