VDB
KO

EEF-CVE-2026-66881

Path traversal in imported file_entries name allows arbitrary file write via URL-type entry download

Quick fix

EEF-CVE-2026-66881 — livebook: upgrade to the fixed version with the command below.

mix deps.update livebook

Details

## Summary

Relative Path Traversal vulnerability in livebook-dev livebook allows an attacker-authored notebook to write a file with attacker-controlled content to an arbitrary path.

A .livemd notebook can declare file\_entries metadata, each entry carrying a name. Every path that creates a file entry through the user interface validates that name with Livebook.Notebook.validate\_file\_entry\_name/2, which requires a flat filename of alphanumerics, dashes, underscores and dots, ending in an extension. The import path does not: Livebook.LiveMarkdown.Import.file\_entry\_metadata\_to\_attrs/1 in lib/livebook/live\_markdown/import.ex takes the name verbatim from the notebook source.

For a URL-type file entry, Livebook.Session.file\_entry\_cache\_file/2 in lib/livebook/session.ex resolves that name beneath the session's temporary directory without checking that the result stays inside it, and Livebook.FileSystem.Utils.resolve\_unix\_like\_path/2 collapses parent-directory segments while clamping only at the filesystem root. When the entry's content is requested and no cached copy exists, Livebook fetches the entry's URL and writes the response body to the resolved path, creating parent directories as needed. The attacker therefore controls both the destination and the contents of the written file, which may land anywhere the Livebook process can write. The same missing containment check is present in Livebook.Session.to\_attachment\_file\_entry/2.

A victim who opens an attacker-supplied notebook and causes the entry to be fetched triggers the write within their own authenticated session; the attacker needs no account on the target instance. URL-type entries are also not placed under notebook stamping quarantine on import, so no warning is shown.

This issue affects livebook: from 0.11.0 before 0.18.7 and from 0.19.0 before 0.19.9.

Are you affected?

Enter the version of the package you're using.

Affected packages

Hex / livebook
Introduced in: 0.11.0 Fixed in: 0.18.7
Fix mix deps.update livebook

References