## Summary
**CVE-2026-40976** is a critical security vulnerability in Spring Boot’s default security configuration. The issue occurs when the **Spring Actuator** is enabled but the **Health** endpoint (or certain management endpoint configurations) are not present; under these conditions the default security filter chain can be created without an authorization rule for Actuator endpoints. This can leave Actuator endpoints accessible without proper authentication or authorization.
### Affected software
– Spring Boot 4.x versions prior to the vendor fix (fixed in **Spring Boot 4.0.6**).
– Applications that enable Spring Actuator and rely on the default security configuration are at risk if they have the affected configuration (Actuator enabled but Health endpoint disabled or similarly unusual management endpoint settings).
### Technical details
– **Root cause:** When Actuator is present but the Health endpoint is not, the default security filter chain can be instantiated without registering the required authorization rule for Actuator endpoints.
– **Consequence:** Management/Actuator endpoints that are expected to be protected may be left unprotected, allowing unauthenticated remote access to operational endpoints (metrics, config endpoints, shutdown, etc.) depending on which Actuator endpoints are enabled.
### Severity and impact
– **Severity:** Critical (vendor advisory classifies this as CRITICAL).
– **Potential impact:** Unauthorized access to Actuator endpoints can lead to information disclosure (system metrics, configuration), operational disruption (exposed control endpoints), and increased attack surface for follow-on exploitation. The exact impact depends on which Actuator endpoints are enabled in a given application.
### Recommendations
– **Immediate action:** Upgrade Spring Boot to **4.0.6** or later where the issue is fixed.
– **Configuration hardening:** Until you can upgrade, restrict network access to management endpoints (firewall or network ACLs), explicitly configure security rules for Actuator endpoints, and avoid exposing Actuator to untrusted networks.
– **Verify:** Review applications that enabled Spring Actuator and confirm whether the Health endpoint or other management configuration could trigger the default filter-chain behavior; enforce explicit authorization rules for management endpoints in security configuration.
## IONIX Status
The IONIX research team is tracking ongoing exploitation attempts and recommends immediate patching. Potentially affected assets are outlined in this post.
References:

