CVE-2026-74711
Last modified
CVE-2026-74711 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: hwmon: (pmbus) Fix type confusion in notification logic Sashiko reports: At the start of the loop in pmbus_notify(), the code unconditionally casts every attribute to a struct sensor_device_attribute: drivers/hwmon/pmbus/pmbus_core.c:pmbus_notify() { for (i = 0; i < data->num_attributes; i++) { struct device_attribute *da = to_dev_attr(data->group.attrs[i]); struct sensor_device_attribute *attr = to_sensor_dev_attr(da); int index = attr->index; ... } However, data->group.attrs can contain other types like struct pmbus_samples_reg or struct pmbus_sensor, which only embed a base struct device_attribute. If da is a struct pmbus_samples_reg, dev_attr is the last member. Casting it to struct sensor_device_attribute and reading the index field appears to access memory past the end of the allocation, which might trigger a slab-out-of-bounds read. Additionally, if da is a struct pmbus_sensor, casting it causes the index field to overlap with the page, phase, and reg fields.
Description
In the Linux kernel, the following vulnerability has been resolved: hwmon: (pmbus) Fix type confusion in notification logic Sashiko reports: At the start of the loop in pmbus_notify(), the code unconditionally casts every attribute to a struct sensor_device_attribute: drivers/hwmon/pmbus/pmbus_core.c:pmbus_notify() { for (i = 0; i < data->num_attributes; i++) { struct device_attribute *da = to_dev_attr(data->group.attrs[i]); struct sensor_device_attribute *attr = to_sensor_dev_attr(da); int index = attr->index; ... } However, data->group.attrs can contain other types like struct pmbus_samples_reg or struct pmbus_sensor, which only embed a base struct device_attribute. If da is a struct pmbus_samples_reg, dev_attr is the last member. Casting it to struct sensor_device_attribute and reading the index field appears to access memory past the end of the allocation, which might trigger a slab-out-of-bounds read. Additionally, if da is a struct pmbus_sensor, casting it causes the index field to overlap with the page, phase, and reg fields. Could this produce a garbage mask on little-endian systems that spuriously matches the target reg, page, and flags during an alert? Fix the problem by using struct sensor_device_attr in struct pmbus_sensor and struct pmbus_label. Since those attributes never trigger a notification, set the value of attr->index to -1 for them. Use this value to distinguish from boolean attributes which _can_ trigger a notification and use the index field to encode mask, page, and register values.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= f469bde9afd136598a0c4edc054296e6046f90ee, < 821f6416e69782fa662aff94b5ea52c943042790; >= f469bde9afd136598a0c4edc054296e6046f90ee, < 0b121de89a99c54bcf516999b04e8531c84f08d5; >= f469bde9afd136598a0c4edc054296e6046f90ee, < 59bd68ab05a8f9c9a60b6ec44682084184803ff4 |
| Linux | Linux | 6.4 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74711?
How severe is CVE-2026-74711?
How do I fix CVE-2026-74711?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-74706In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74707In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74708In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74709In the Linux kernel, the following vulnerability has been re…
- CVE-2026-7471GitLab has remediated an issue in GitLab EE affecting all ve…3.5
- CVE-2026-74710In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74712In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74713In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74714In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74715In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74716In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74717In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-74711?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
