Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2026-80648

Published Aug 28, 2026

Overview

CVE-2026-80648 is a known-severity vulnerability. It was published on August 28, 2026.

Technical Description

In the Linux kernel, the following vulnerability has been resolved:

pinctrl: spacemit: fix NULL check in spacemit_pin_set_config

spacemit_pin_set_config() looks up the per-pin descriptor with

spacemit_get_pin() then checks the wrong variable for failure:

const struct spacemit_pin *spin = spacemit_get_pin(pctrl, pin);

...

if (!pin)

return -EINVAL;

reg = spacemit_pin_to_reg(pctrl, spin->pin);

pin is an unsigned int pin id, where 0 (GPIO_0 / gmac0_rxdv on K3) is a

valid pin, so rejecting it here drops the PAD config write for the first

pin of every group. On K3 Pico-ITX the GMAC RGMII group lists pin 0 as

its first entry, so its drive-strength / bias configuration was silently

ignored.

The intended guard is against spacemit_get_pin() returning NULL when the

pin id isn't in the SoC's pin table. Check spin instead, which both

restores PAD setup for pin 0 and prevents a NULL deref on spin->pin.

Remediation

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Frequently Asked Questions

What is CVE-2026-80648?

CVE-2026-80648 is a known-severity vulnerability. It was published on August 28, 2026.

How severe is CVE-2026-80648?

CVSS score information is not yet available for this vulnerability. Check back as the CVE record is updated by NVD analysts.

How do I fix or remediate CVE-2026-80648?

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2026-80648?

CyberStrike's AI-powered security agents can automatically detect CVE-2026-80648 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.