CVE-2026-55441
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedmise manages dev tools like node, python, cmake, and terraform. Prior to 2026.6.4, mise's trust feature gates config files (mise.toml, .tool-versions) through trust_check, but task-include files are loaded on a path that never reaches it. When a directory has a task-include dir (mise-tasks/, .mise/tasks/, …) but no config file, mise falls back to the default includes and renders each task's tera fields — and that tera environment has exec() registered. A {{ exec(command='…') }} in any rendered field runs arbitrary commands the moment the tasks are merely listed. There's no config file to gate on, so no trust prompt ever appears. Read-only commands trigger it: mise tasks, mise task ls, mise run, mise tasks --usage (the query shell completion runs on Tab). The victim only has to cd into a cloned repo and list or tab-complete a task. This vulnerability is fixed in 2026.6.4.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidencemise's task-include feature loads Tera templates from mise-tasks/ and .mise/tasks/ directories without the trust verification that applies to config files. When no config file exists, arbitrary commands in templates via {{ exec(command='…') }} execute simply by listing tasks, since the tera environment has exec() registered and no trust prompt appears.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Local
- Complexity
- Low
- Privileges
- None
- User interaction
- Required
- Scope
- Changed
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check if mise is installed and get its versionRun `mise --version` to obtain the installed mise version numberAffected if The installed version is earlier than 2026.6.4 (e.g., 2026.6.3, 2026.5.x, etc.)
-
Locate task directories in the current projectLook for directories named `mise-tasks/` or `.mise/tasks/` in the project rootAffected if Either of these directories exist and contain task definition files (typically with .toml extension)
-
Inspect task files for dangerous template syntaxSearch inside task files (*.toml) in mise-tasks/ or .mise/tasks/ for the pattern `exec(command=` which indicates Tera template executionAffected if Any task file contains `{{ exec(command='...') }}` or similar Tera template syntax with exec function calls
-
Check for the presence of a mise config fileLook for a mise configuration file (mise.toml or .mise.toml) in the project rootAffected if No mise.toml or .mise.toml file exists in the project root - this is the condition where the trust verification bypass occurs
-
Verify the task-include feature can be triggeredRun `mise task ls` in the project directory to trigger task loading - if tasks are defined in mise-tasks/ or .mise/tasks/ without a config file, they will be loaded automaticallyAffected if Running `mise task ls` executes or displays tasks from mise-tasks/ or .mise/tasks/ when no config file exists
A user is affected if they have mise version earlier than 2026.6.4 installed, have task files in mise-tasks/ or .mise/tasks/ directories containing exec() template syntax, and lack a mise.toml/.mise.toml config file in the project root.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade to mise version 2026.6.4 or later. Avoid running mise tasks, mise task ls, or tab-completion in untrusted repositories before upgrading.
2026.6.4 or later
- Verify the current installed version of mise by running: mise --version
- Upgrade mise to version 2026.6.4 or later. Use your package manager or reinstall from the official source (e.g., Homebrew: brew upgrade mise, or cargo: cargo install mise)
- After upgrading, verify the new version is installed: mise --version
- If you work with untrusted repositories containing task-include directories (mise-tasks/, .mise/tasks/), ensure you trust the source before running any mise task commands
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation1.0 h
- Testing2.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $1,696.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-55441 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-55441 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data