A newly disclosed vulnerability in Spring Boot Admin Server is giving security teams another reason to audit their monitoring stack.
Tracked as CVE-2026-62242, the flaw carries a CVSS score of 7.7 and affects all versions prior to 4.1.2, allowing unauthenticated attackers to weaponize the server’s own instance-registration feature to pivot into internal networks and steal cloud credentials.
Spring Boot Admin Server is a widely used dashboard for monitoring and managing Spring Boot applications, giving operators visibility into health checks, metrics, and logs across distributed services. The vulnerability, classified under CWE-918 (Server-Side Request Forgery), lives in the instance registration endpoint.
Spring Boot Admin SSRF Flaw
Normally, applications register themselves with the admin server by submitting a healthUrl and managementUrl. The problem: servers before version 4.1.2 accept these URLs without validating them against private IP ranges or cloud metadata addresses, and, crucially, registration requires no authentication at all.
An attacker simply registers a fake “instance” pointing its healthUrl or managementUrl at an internal target of choice, such as an internal admin panel, a database management interface, or the cloud metadata service. Spring Boot Admin dutifully polls that address and, through its actuator proxy feature, returns the response body back to the attacker.
This turns the admin server into a blind SSRF proxy with a very useful side effect: readable output. On AWS, GCP, or Azure deployments, that means an attacker can query the instance metadata service (typically at 169.254.169.254) and potentially retrieve temporary IAM credentials, service account tokens, or other sensitive configuration data, all without ever authenticating to the admin console itself.
The CVSS 4.0 vector (AV:N/AC:L/AT:N/PR:N/UI:N) confirms this is about as easy as SSRF gets: no privileges, no user interaction, no special conditions, exploitable directly over the network.
The SC:H component reflects high confidentiality impact on the subsequent system reached via the forged request, which is exactly what makes metadata-endpoint abuse so dangerous.
Organizations running Spring Boot Admin in AWS, Azure, or GCP without network-level restrictions on outbound proxy requests are the most exposed, since a single unauthenticated HTTP call could translate directly into a cloud account takeover chain.
Researcher George Chen is credited with identifying and reporting the flaw through the project’s GitHub issue tracker. The maintainers at codecentric responded with a patch, merged via pull request #5464, which is addressed in the 4.1.2 release. The fix introduces validation logic to block registration of internal, loopback, and metadata-service addresses.
Remediation
Security teams should treat this as a priority patch given the ease of exploitation:
- Upgrade Spring Boot Admin Server to version 4.1.2 or later immediately.
- Restrict network egress from the admin server host to prevent access to internal IP ranges and cloud metadata endpoints.
- Audit registered instances for unfamiliar or suspicious
healthUrl/managementUrlentries. - Rotate any cloud credentials that may have been exposed via metadata service queries.
- Place the admin console behind authentication and network segmentation rather than relying on default configurations.