LiveActive security incident?Get immediate response
CVE Record

CVE-2019-15792: Type confusion in shiftfs

In shiftfs, a non-upstream patch to the Linux kernel included in the Ubuntu 5.0 and 5.3 kernel series, shiftfs_btrfs_ioctl_fd_replace() calls fdget(oldfd), then without further checks passes the resulting file* into shiftfs_real_fdget(), which casts file->private_data, a void* that points to a filesystem-dependent type, to a "struct shiftfs_file_info *". As the private_data is not required to be a pointer, an attacker can use this to cause a denial of service or possibly execute arbitrary code.

HighCVSS 7.1Not KEV-listedUpdated
Glexia's TakeAutomated analysishigh

Security readout for executives and security teams

Plain-English summary

This is a local Ubuntu kernel vulnerability in shiftfs. A user with access to the affected system could trigger a kernel type confusion bug, causing a crash or possibly changing kernel-controlled data. The source bundle does not show remote exploitation or confirmed active attacks.

Executive priority

Treat as high priority for affected Ubuntu fleets, especially multi-user systems. The issue requires local access, so urgency is below remotely exploitable kernel bugs, but kernel integrity and availability impact justify prompt patching.

Technical view

The flaw is in Ubuntu’s non-upstream shiftfs patch for Linux 5.0 and 5.3 kernels. shiftfs_btrfs_ioctl_fd_replace() obtains a file pointer with fdget(oldfd), then shiftfs_real_fdget() casts file->private_data to struct shiftfs_file_info without validating the underlying filesystem-specific type.

Likely exposure

Exposure is limited to Ubuntu systems running affected 5.0 or 5.3 kernel series with shiftfs present. Attackers need local privileges. Non-Ubuntu upstream kernels and Ubuntu systems outside the cited affected kernel series are not shown as affected in the provided sources.

Exploitation context

The CVSS vector indicates local access, low complexity, low privileges, and no user interaction. The bundle says denial of service or possible arbitrary code execution. CISA KEV is false, and no cited source confirms active exploitation.

Researcher notes

The core issue is CWE-843 type confusion around file->private_data. Because the field is filesystem-dependent, unsafe casting can corrupt kernel behavior. The source bundle supports denial of service and possible code execution, but does not establish exploit reliability or public weaponization.

Mitigation direction

  • Apply Ubuntu kernel security updates referenced in USN-4183-1 and USN-4184-1.
  • Reboot affected systems into the updated kernel after patching.
  • Check Ubuntu guidance if an affected kernel cannot be replaced immediately.
  • Prioritize shared systems where untrusted local users can run code.

Validation and detection

  • Inventory Ubuntu hosts running 5.0 or 5.3 kernel series.
  • Compare installed kernel package versions with Ubuntu USN-4183-1 and USN-4184-1.
  • Confirm the running kernel changed after reboot, not only the installed package.
  • Record whether local users or workloads can access affected systems.
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-843: 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
description · low confidence lookup

Execution behavior lookup

The CVE wording references code or command execution, so execution technique review may help defensive triage. This is a Glexia inferred lookup path, not an official MITRE, ATT&CK, or CVE Program mapping.

Open ATT&CK lookup
cve · low confidence lookup

CVE-2019-15792 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
High
CVSS
7.1 (3.1)
Known Exploited
No
Published

Vector: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/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
0Timeline events
0ADP providers
4Source links

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
7.1CVSS 3.1HighCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H1.85.2Primary CVE score

Vulnerability scoring details

Base CVSS 3.1 score

7.1High
CVSS 3.1 vector shape for CVE-2019-15792Attack VectorAttack ComplexityPrivileges RequiredUser InteractionScopeConfidentiality ImpactIntegrity ImpactAvailability Impact

Vector: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/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
Affected products

Products and packages named in the record

VendorProductVersion / packageStatus
UbuntuShiftfs in the Linux kernel5.3.0-11.12, 5.0 kernelListed
Weakness

CWE details

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

CWE-843 · source CWE mapping

Access of Resource Using Incompatible Type ('Type Confusion')

Access of Resource Using Incompatible Type ('Type Confusion') represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.