Cyber Resilience

CVE-2026-24748

Medium

Published: 27 January 2026

Published
27 January 2026
Modified
25 February 2026
KEV Added
Patch
CVSS Score v4 6.9 CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:L/SC:N/SI:N/SA:L/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
EPSS Score 0.0012 30.6th percentile
Risk Priority 14 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-24748 is a medium-severity Incorrect Authorization (CWE-863) vulnerability in Akuity Kargo. Its CVSS base score is 6.9 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 30.6th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified are NIST 800-53 AC-3 (Access Enforcement) and AC-6 (Least Privilege).

Deeper analysis

CVE-2026-24748 is a vulnerability in Kargo, an open-source tool for managing and automating the promotion of software artifacts in Kubernetes environments. In versions prior to 1.8.7, 1.7.7, and 1.6.3, flawed authentication checks on the GetConfig() API endpoint allow unauthenticated access when an arbitrary non-empty Bearer token is provided in the Authorization header, bypassing proper validation. The same issue affects the RefreshResource endpoint, enabling unauthorized interactions without information disclosure on that endpoint alone.

Network-accessible unauthenticated attackers can exploit GetConfig() to exfiltrate sensitive configuration data, including endpoints for connected Argo CD clusters, which may facilitate enumeration of cluster URLs and namespaces for follow-on attacks. Exploitation of RefreshResource allows triggering reconciliations by annotating Kubernetes resources, potentially enabling a denial-of-service condition if repeated in a loop, thereby degrading performance of the Kargo API and legitimate requests to the Kubernetes API server. The vulnerability carries a CVSS v3.1 base score of 7.2 (AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:L) and is associated with CWE-863 (Incorrect Authorization).

The issue has been addressed in Kargo versions 1.8.7, 1.7.7, and 1.6.3 via fixes documented in specific GitHub commits and the project's security advisory (GHSA-w5wv-wvrp-v5m5). No workarounds are available.

EU & UK References

Vulnerability details

Kargo manages and automates the promotion of software artifacts. Prior to versions 1.8.7, 1.7.7, and 1.6.3, a bug was found with authentication checks on the `GetConfig()` API endpoint. This allowed unauthenticated users to access this endpoint by specifying an `Authorization`…

more

header with any non-empty `Bearer` token value, regardless of validity. This vulnerability did allow for exfiltration of configuration data such as endpoints for connected Argo CD clusters. This data could allow an attacker to enumerate cluster URLs and namespaces for use in subsequent attacks. Additionally, the same bug affected the `RefreshResource` endpoint. This endpoint does not lead to any information disclosure, but could be used by an unauthenticated attacker to perform a denial-of-service style attack against the Kargo API. `RefreshResource` sets an annotation on specific Kubernetes resources to trigger reconciliations. If run on a constant loop, this could also slow down legitimate requests to the Kubernetes API server. This problem has been patched in Kargo versiosn 1.8.7, 1.7.7, and 1.6.3. There are no workarounds for this issue.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1005 Data from Local System Collection
Adversaries may search local system sources, such as file systems, configuration files, local databases, virtual machine files, or process memory, to find files of interest and sensitive data prior to Exfiltration.
T1018 Remote System Discovery Discovery
Adversaries may attempt to get a listing of other systems by IP address, hostname, or other logical identifier on a network that may be used for Lateral Movement from the current system.
T1499 Endpoint Denial of Service Impact
Adversaries may perform Endpoint Denial of Service (DoS) attacks to degrade or block the availability of services to users.
Why these techniques?

Authentication bypass on public Kargo API directly enables T1190 for initial exploitation, T1005 for config data exfiltration, T1018 for cluster/namespace enumeration, and T1499 for DoS via RefreshResource loops.

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-27112Same product: Akuity Kargo
CVE-2026-42438Shared CWE-863
CVE-2026-26336Shared CWE-863
CVE-2026-40515Shared CWE-863
CVE-2025-21565Shared CWE-863
CVE-2026-46823Shared CWE-863
CVE-2026-44260Shared CWE-863
CVE-2024-13277Shared CWE-863
CVE-2025-30743Shared CWE-863
CVE-2026-30947Shared CWE-863

Affected Assets

akuity
kargo
≤ 1.6.3 · 1.7.0 — 1.7.7 · 1.8.0 — 1.8.7

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly enforces valid authorization decisions on API endpoints such as GetConfig() and RefreshResource, blocking the Bearer-token bypass that allows unauthenticated access.

prevent

Requires that only the minimum privileges needed are granted, so the flawed authorization logic would not have permitted any access without explicit, valid credentials.

prevent

Limits the ability of unauthenticated callers to trigger repeated RefreshResource reconciliations that degrade Kargo and Kubernetes API performance.

References