CVE-2026-49869
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 · uneditedKestra is an open-source, event-driven orchestration platform. Prior to 1.0.45 and 1.3.21, AuthenticationFilter in Kestra OSS uses request.getPath().endsWith("/configs") to whitelist the public configuration endpoint from Basic Auth. Because the check is a suffix match rather than an exact path match, any API path whose last segment is configs bypasses authentication entirely. An unauthenticated remote attacker can exploit this to create and execute arbitrary workflows without credentials. Because Kestra ships with script execution plugins (plugin-script-shell, plugin-script-python, etc.) enabled by default, this directly results in unauthenticated Remote Code Execution as root inside the Kestra worker container. This vulnerability is fixed in 1.0.45 and 1.3.21.
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 confidenceThe AuthenticationFilter in Kestra OSS uses a suffix match (`endsWith('/configs')`) instead of an exact path match to whitelist the public configuration endpoint from Basic Auth. This allows any API path ending with 'configs' to bypass authentication entirely, enabling unauthenticated attackers to create and execute arbitrary workflows. Combined with default-enabled script execution plugins (shell, python), this leads to unauthenticated RCE as root in the Kestra worker container.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data< 1.0.45>= 1.1.0, < 1.3.21CVSS 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
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Changed
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/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 installed Kestra versionRun `kestra --version` from command line or check the version displayed in the Kestra UI footerAffected if Version is less than 1.0.45, or greater than or equal to 1.1.0 but less than 1.3.21
-
Locate AuthenticationFilter source codeFind the AuthenticationFilter.java file in the Kestra source (typically under io/kestra/core/services/ or similar package path)Affected if The filter contains `endsWith("/configs")` instead of an exact path match like `equals("/configs")` or `equalsIgnoreCase("/configs")`
-
Test unauthenticated access to configs endpointSend an HTTP GET request to any API path ending with '/configs' without providing authentication headers (for example: curl -s http://localhost:8080/api/v1/configs)Affected if The request returns a 200 OK response with configuration data instead of 401 Unauthorized or 403 Forbidden
-
Verify script execution plugins availabilityCheck the Kestra plugins directory or configuration for enabled execution plugins (shell, python, or other script runners)Affected if Script execution plugins are installed and enabled in the environment
The environment is affected if Kestra version is in the vulnerable range AND the AuthenticationFilter uses suffix matching (endsWith) for path validation, allowing unauthenticated access to any path ending with '/configs'.
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 · scoped1.0.451.3.21
Upgrade Kestra to version 1.0.45 or 1.3.21 or later to obtain the patched AuthenticationFilter that uses exact path matching instead of suffix matching.
1.3.21 (or 1.0.45 for the 1.0.x branch)
- Identify your current Kestra version by checking the deployed Docker image tag or application version
- Upgrade to version 1.0.45 (for the 1.0.x branch) or version 1.3.21 (for the 1.1.x-1.3.x branch). If running 1.1.x or higher, upgrade to 1.3.21 or later for the latest fixes
- If using Docker, update your image tag from `kestra/kestra:<old-tag>` to `kestra/kestra:v1.3.21` (or the appropriate version for your branch)
- If using a binary distribution, download the new version from the official Kestra releases and replace the existing installation
- After upgrading, verify the AuthenticationFilter is updated by reviewing the source code or release notes
- Restart the Kestra service to apply the new version
- Test that authentication is properly enforced on non-config endpoints and that the /configs endpoint remains accessible
- If running in a multi-node setup, ensure all nodes are upgraded to the same version
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation1.0 h
- Testing3.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,224.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-49869 — 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-49869 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