7.5 HIGH
- CVSS version (CVSS): 3.1
- Attack Vector (AV): Network (N)
- Attack Complexity (AC): Low (L)
- Privileges Required (PR): None (N)
- User Interaction (UI): None (N)
- Scope (S): Unchanged (U)
- Confidentiality (C): None (N)
- Integrity (I): High (H)
- Availability (A): None (N)
- Modified Attack Vector (MAV): Network (N)
- Modified Attack Complexity (MAC): Low (L)
- Modified Privileges Required (MPR): None (N)
- Modified User Interaction (MUI): None (N)
- Modified Confidentiality (MC): None (N)
- Modified Scope (MS): Unchanged (U)
- Modified Integrity (MI): High (H)
- Modified Availability (MA): None (N)
by @LeSuisse Activity log
- Created suggestion
-
@LeSuisse
ignored
2 packages
- python313Packages.wasmtime
- python314Packages.wasmtime
- @LeSuisse ignored
- @LeSuisse accepted
- @LeSuisse published on GitHub
Wasmtime: WASI path_open(TRUNCATE) bypasses `FilePerms::WRITE` host restriction
Wasmtime is a runtime for WebAssembly. In versions prior to 24.0.9, 36.0.10, and 44.0.2, when a filesystem preopen is given DirPerms::all() and FilePerms::READ without FilePerms::WRITE, this access control mechanism can be bypassed via the wasip2 descriptor.open-at or wasip1 path_open interfaces by opening a file with only the OpenFlags::TRUNCATE oflag. The root cause is that the clause handling OpenFlags::TRUNCATE in crates/wasi/src/filesystem.rs (Dir::open_at, lines 967–969) did not set open_mode |= OpenMode::WRITE;, which is later used for the access control check against FilePerms to determine whether opening the file is permitted; the single-line fix adds that missing assignment, after which the affected calls correctly fail with error-code.not-permitted and ERRNO_PERM respectively. Only wasmtime-wasi embeddings that combine DirPerms::MUTATE with FilePerms::READ are affected by this bug. In particular, the Wasmtime project's wasmtime-cli's use of wasmtime-wasi is not affected, because it always sets FilePerms::all() for all preopens. This issue has been fixed in versions 24.0.9, 36.0.10 and44.0.2.
References
-
https://github.com/bytecodealliance/wasmtime/releases/tag/v44.0.2 x_refsource_MISC
Ignored references (3)
-
https://github.com/bytecodealliance/wasmtime/releases/tag/v45.0.0 x_refsource_MISC
-
https://github.com/bytecodealliance/wasmtime/releases/tag/v36.0.10 x_refsource_MISC
-
https://github.com/bytecodealliance/wasmtime/releases/tag/v24.0.9 x_refsource_MISC
Affected products
- ==< 24.0.9
- ==>= 37.0.0, < 44.0.2
- ==>= 25.0.0, < 36.0.10
Matching in nixpkgs
Ignored packages (2)
pkgs.python313Packages.wasmtime
Python WebAssembly runtime powered by Wasmtime
Package maintainers
-
@nekowinston winston <hey@winston.sh>
-
@ereslibre Rafael Fernández López <ereslibre@ereslibre.es>