LiveActive security incident?Get immediate response
CVE Record

CVE-2026-28383: Grafana plugin resources can lead to unbounded memory allocation

A request to the Grafana plugin resources endpoint can cause unbounded memory allocation by reading the entire request body into memory. An authenticated user can exploit this to trigger an out-of-memory condition, potentially causing a denial of service.

MediumCVSS 6.5Not KEV-listedUpdated
Glexia's TakeAutomated analysismoderate

Security readout for executives and security teams

Plain-English summary

A flaw in Grafana lets any logged-in user overload the server's memory by sending a specially crafted request to a plugin endpoint. The server tries to load the whole request into memory, which can crash the service and interrupt dashboards and monitoring. Business impact is availability loss for teams that rely on Grafana for observability, not data theft or tampering.

Executive priority

Moderate priority: schedule patching in the next standard maintenance window, sooner if Grafana is exposed to untrusted users or the internet. This is an availability issue for observability tooling; a successful attack disrupts monitoring but does not leak data.

Technical view

The Grafana plugin resources endpoint reads the entire HTTP request body into memory without size limits, enabling CWE-770 uncontrolled resource consumption. An authenticated attacker (PR:L) can submit oversized requests to force an out-of-memory condition and denial of service. CVSS 3.1 6.5 (AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H). Grafana's advisory lists specific fixed versions across the 11.x through 13.x branches.

Likely exposure

Any Grafana OSS deployment on the affected version lines where users can authenticate and reach plugin resource endpoints is exposed. Internet-facing or multi-tenant Grafana instances face higher risk; instances behind SSO with tightly scoped, trusted users face lower practical risk but remain vulnerable to insider or credential-compromise scenarios.

Exploitation context

Not listed in CISA KEV and no public reports of active exploitation are cited in the source bundle. Exploitation requires valid authentication, which lowers opportunistic risk but keeps the issue relevant where accounts are broadly provisioned or credentials can be phished. No exploit code is referenced in the provided sources.

Researcher notes

CWE-770 uncontrolled resource allocation via unbounded request-body read in the plugin resources handler. Authentication is required (PR:L) but no user interaction. Confirm exact fixed versions from the Grafana advisory before rollout, since the affected list spans multiple release branches (11.x, 12.x, 13.x). Consider request-size caps at the reverse proxy as compensating control until patching completes.

Mitigation direction

  • Upgrade Grafana OSS to a fixed release identified in the vendor advisory for your branch.
  • Restrict Grafana access to trusted networks or SSO-authenticated users only.
  • Enforce least-privilege on Grafana accounts and disable unused plugin functionality.
  • Place Grafana behind a reverse proxy that caps request body size.
  • Monitor Grafana process memory and enable automatic restart on OOM.

Validation and detection

  • Inventory Grafana instances and record installed version against the vendor advisory list.
  • Confirm patched build is deployed by checking the Grafana version banner and API version endpoint.
  • Review authentication configuration and identify who can reach plugin resource endpoints.
  • Test upstream request-size limits on any reverse proxy fronting Grafana.
  • Audit logs for unusually large plugin resource requests or repeated OOM restarts.
Prepared
Confidence
high
Sources
3

Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.

Potential ATT&CK relevance

Conservative CVE-to-ATT&CK context

These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.

ATT&CK lookup starting points

Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.

cwe · low confidence lookup

CWE-770: Exact CWE lookup

Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.

Open ATT&CK lookup
cve · low confidence lookup

CVE-2026-28383 mapping review

Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.

Open ATT&CK lookup
Vulnerability profileCVE Program record
Severity
Medium
CVSS
6.5 (3.1)
Known Exploited
No
Published

Vector: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Official CVE source material

CNA and ADP enrichment extracted from CVE v5

These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.

1CVSS vectors
3Timeline events
1ADP providers
2Source links

SSVC decision data

CISA-ADPCISA Coordinator
Timestamp
Version
2.0.3
Exploitation: noneAutomatable: noTechnical Impact: partial

CVSS vector scores

1 official score

We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.

ScoreVersionSeverityVectorExploitImpactSource
6.5CVSS 3.1MediumCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H2.83.6GRAFANA

Vulnerability scoring details

Base CVSS 3.1 score

6.5Medium
CVSS 3.1 vector shape for CVE-2026-28383Attack VectorAttack ComplexityPrivileges RequiredUser InteractionScopeConfidentiality ImpactIntegrity ImpactAvailability Impact

Vector: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Attack Vector
NetworkAdjacentLocalPhysical
Attack Complexity
LowHigh
Privileges Required
NoneLowHigh
User Interaction
NoneRequired
Scope
ChangedUnchanged
Confidentiality Impact
HighLowNone
Integrity Impact
HighLowNone
Availability Impact
HighLowNone

Vulnerability timeline

Timeline events are normalized from CVE metadata, CNA source timelines, ADP timelines, and KEV metadata when present.

  1. CVE reservedCVE Program

    The CVE ID was reserved by the assigning CNA.

  2. CVE publishedCVE Program

    The CVE record was published.

  3. CVE updatedCVE Program

    The CVE record metadata indicates this as the latest update time.

ADP provider summaries

CISA-ADPCISA ADP Vulnrichment
other:ssvc

Source materials

Affected products

Products and packages named in the record

VendorProductVersion / packageStatus
GrafanaGrafana OSS6.7.0, 11.6.14, 12.0.0, 12.2.8, 12.3.0, 12.3.6, 12.4.0, 12.4.3, 13.0.0, 13.0.1unaffected
Weakness

CWE details

CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.

CWE-770 · source CWE mapping

Allocation of Resources Without Limits or Throttling

Allocation of Resources Without Limits or Throttling represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.