CVE-2026-13307 is a heap-based buffer overflow in the USB packet handling code of Autel MaxiCharger EV chargers, allowing unauthenticated attackers to achieve arbitrary code execution. The CVSS score of 6.8 reflects the physical proximity requirement, but the actual risk profile is worse than the rating suggests — and here's why that matters for your response.

The core vulnerability isn't really about USB. It's about a diagnostic interface that was never designed for a networked world. Autel built the MaxiCharger as a connected device — WiFi-enabled, cloud-managed, app-controlled — but the USB handler almost certainly predates that connectivity. Someone wrote code for firmware development or debugging when the device was standalone, and when networking capabilities were added, no one revisited the trust assumptions. This is a pattern you'll recognize from routers, IP cameras, and other IoT devices: legacy diagnostic code that becomes a hidden attack surface once the device lives on an network an attacker can reach.

Three things should drive your prioritization:

First, examine your production firmware for what actually guards the USB interface. If it's truly unauthenticated — no PIN, no password, no cryptographic handshake — then the heap overflow gives an attacker persistent code execution on an always-on device sitting inside your network perimeter. That's not a charger problem; it's a network entry point problem.

Second, investigate the firmware update path. The USB primitive could be used to flash a backdoored firmware image that survives updates. Check whether Autel's update mechanism enforces cryptographic signature verification on firmware loaded via USB, and whether the secure boot chain validates code executed from USB at all. If the USB handler runs from SRAM without going through signature checks, patching the primary firmware image may leave this attack surface untouched.

Third, assess the downgrade risk. Even if Autel releases a patch, determine whether the update mechanism allows replay of older firmware versions. If an attacker can roll back to a pre-patch image, the vulnerability remains exploitable indefinitely.

The temporal exposure window compounds the risk. EV chargers don't update like smartphones — many may never receive this patch over their operational lifetime. You're looking at a potential multi-year disclosed-but-unfixed window on always-on, networked devices with physical power infrastructure access. That changes the calculus from 'medium severity' to 'long-duration target with high payout.'

Your action items: verify USB authentication status in production firmware, audit the firmware signing and secure boot architecture, and treat this as a network perimeter issue rather than a device-specific issue.