LiveActive security incident?Get immediate response
CVE Record

CVE-2024-57933: gve: guard XSK operations on the existence of queues

In the Linux kernel, the following vulnerability has been resolved: gve: guard XSK operations on the existence of queues This patch predicates the enabling and disabling of XSK pools on the existence of queues. As it stands, if the interface is down, disabling or enabling XSK pools would result in a crash, as the RX queue pointer would be NULL. XSK pool registration will occur as part of the next interface up. Similarly, xsk_wakeup needs be guarded against queues disappearing while the function is executing, so a check against the GVE_PRIV_FLAGS_NAPI_ENABLED flag is added to synchronize with the disabling of the bit and the synchronize_net() in gve_turndown.

MediumCVSS 5.5Not KEV-listedUpdated
Glexia's TakeAutomated analysismoderate

Security readout for executives and security teams

Plain-English summary

CVE-2024-57933 is a Linux kernel availability flaw in the gve network driver. Certain XSK operations can crash the system when queues are absent or disappearing, such as when an interface is down. The known impact is denial of service, not data theft or tampering.

Executive priority

Treat this as a moderate availability risk. Patch through normal kernel maintenance, with faster action for production systems where a local user-triggered crash would affect critical workloads or service availability.

Technical view

The issue is a NULL pointer dereference in gve XSK pool enable, disable, or wakeup paths. The fix guards XSK operations on queue existence and NAPI-enabled state, synchronizing against queue teardown. CVSS is 5.5: local attack vector, low complexity, low privileges, and high availability impact.

Likely exposure

Exposure is most likely on Linux systems running affected kernel versions with the gve driver and XSK/AF_XDP activity. The bundle lists Linux 6.4 through affected stable lines including 6.6.70, 6.12.9, and 6.13, but local vendor backports may change status.

Exploitation context

The source bundle does not show CISA KEV listing or active exploitation. CVSS indicates local access and low privileges are required. Public evidence supplied supports a crash scenario, not remote compromise, privilege escalation, confidentiality loss, or integrity loss.

Researcher notes

Evidence is limited to the CVE record and Linux stable commit references. The vulnerable behavior centers on queue lifetime handling during XSK operations. Do not infer remote reachability or broader product exposure without environment-specific driver and workload confirmation.

Mitigation direction

  • Apply a vendor kernel update containing the referenced stable gve fixes.
  • Prioritize hosts using the gve driver and XSK/AF_XDP workloads.
  • Check distribution advisories for backported fixes before relying on version numbers alone.
  • Reduce unnecessary local account access on exposed Linux systems.

Validation and detection

  • Inventory Linux kernel versions and identify systems using the gve driver.
  • Check vendor package changelogs for CVE-2024-57933 or the referenced stable commits.
  • Review crash logs for NULL pointer dereferences involving gve XSK paths.
  • Confirm patched kernels include guards around XSK operations and NAPI teardown state.
Prepared
Confidence
high
Sources
5

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-476: 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-2024-57933 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
5.5 (3.1)
Known Exploited
No
Published

Vector: CVSS:3.1/AV:L/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
4Source 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
5.5CVSS 3.1MediumCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H1.83.6CISA-ADP

Vulnerability scoring details

Base CVSS 3.1 score

5.5Medium
CVSS 3.1 vector shape for CVE-2024-57933Attack VectorAttack ComplexityPrivileges RequiredUser InteractionScopeConfidentiality ImpactIntegrity ImpactAvailability Impact

Vector: CVSS:3.1/AV:L/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
cvssV3_1other:ssvc
Affected products

Products and packages named in the record

VendorProductVersion / packageStatus
LinuxLinuxfd8e40321a12391e6f554cc637d0c4b6109682a9, fd8e40321a12391e6f554cc637d0c4b6109682a9, fd8e40321a12391e6f554cc637d0c4b6109682a9unaffected
LinuxLinux6.4, 0, 6.6.70, 6.12.9, 6.13affected
Weakness

CWE details

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

CWE-476 · source CWE mapping

NULL Pointer Dereference

NULL Pointer Dereference represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.