EEF-CVE-2026-66881
Path traversal in imported file_entries name allows arbitrary file write via URL-type entry download
빠른 조치
EEF-CVE-2026-66881 — livebook: 아래 명령으로 수정 버전으로 올리세요.
mix deps.update livebook 상세
## 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.
이 버전이 영향받나요?
사용 중인 패키지 버전을 입력하면 즉시 평가합니다.
영향 패키지
참고
- https://github.com/livebook-dev/livebook/security/advisories/GHSA-r4h8-2xpq-v48g [ADVISORY]
- https://cna.erlef.org/cves/CVE-2026-66881.html [WEB]
- https://github.com/livebook-dev/livebook/commit/1443dd23df6e7b9203b6797f0695a807aeb81dde [FIX]
- https://github.com/livebook-dev/livebook/commit/acf4cb8c0c79b89c795b180f061be7de2d8b5aa9 [FIX]
- https://github.com/livebook-dev/livebook/commit/50f86982ebf36c22abeb379b55ec0f2859c83bb9 [FIX]
- https://hex.pm/packages/livebook [PACKAGE]