In the Linux kernel, the following vulnerability has been resolved:
powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue
When value < time_unit, the parameter of ilog2() will be zero and
the return value is -1. u64(-1) is too large for shift exponent
and then will trigger shift-out-of-bounds:
shift exponent 18446744073709551615 is too large for 32-bit type 'int'
Call Trace:
rapl_compute_time_window_core
rapl_write_data_raw
set_time_window
store_constraint_time_window_us
Security readout for executives and security teams
Plain-English summary
CVE-2022-50366 is a Linux kernel flaw in Intel RAPL power management handling. A local low-privileged user may be able to trigger a kernel error that affects confidentiality and availability. Public sources do not show active exploitation, and CISA KEV status is false in the provided data.
Executive priority
Treat as a priority kernel update for Linux fleets, especially multi-user servers and research or compute systems. It is not presented as internet-exploitable in the sources, but kernel confidentiality and availability impact warrants timely remediation.
Technical view
The issue is in powercap intel_rapl. When a time-window value is smaller than time_unit, ilog2() can return -1, which is cast to u64 and used as an invalid shift exponent. The call path includes rapl_compute_time_window_core, rapl_write_data_raw, set_time_window, and store_constraint_time_window_us.
Likely exposure
Exposure is likely limited to Linux systems running affected kernels with Intel RAPL powercap functionality available. The CVE has local attack vector, low privileges required, and no user interaction. Version mapping should be confirmed against Linux stable commits and distribution advisories.
Exploitation context
The provided sources rate this CVSS 7.1 with local access and low privileges required. No KEV listing or cited public source confirms active exploitation. The known impact is kernel-level confidentiality and availability risk, not remote compromise.
Researcher notes
The source data names CWE-125, but the description centers on a shift-out-of-bounds condition in intel_rapl time-window computation. Affected-version data is not sufficiently clear for precise fleet matching without distribution-specific advisories or kernel commit verification.
Mitigation direction
Apply kernel updates from your Linux distribution or vendor.
Confirm the update includes the referenced Linux stable fixes.
Prioritize shared systems with untrusted local users.
If patching is delayed, limit unnecessary local user access.
Monitor vendor advisories for corrected package versions.
Validation and detection
Inventory Linux kernels and identify Intel RAPL powercap exposure.
Compare running kernels against vendor fixed-version guidance.
Check whether referenced stable commits are included in deployed kernels.
Review kernel logs for related UBSAN or powercap warnings.
Track remediation through configuration and vulnerability management systems.
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-125: 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.
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.
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.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-125 · source CWE mapping
Out-of-bounds Read
Out-of-bounds Read represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.