Summary
CVE-2026-62242 is a Server-Side Request Forgery (SSRF) vulnerability in Spring Boot Admin Server (by codecentric), affecting all versions before 4.1.2. Unauthenticated remote attackers can register malicious application instances with attacker-controlled healthUrl and managementUrl parameters, forcing the server to issue HTTP requests to arbitrary internal addresses — including cloud instance metadata services — and retrieve response bodies through the server’s built-in actuator proxy. With a CVSS v3.1 base score of 8.6 (HIGH), this vulnerability poses a critical risk to any internet-exposed Spring Boot Admin deployment, particularly in cloud-hosted environments where exploitation can result in the theft of IAM credentials and full cloud account compromise.
Technical details
- Root cause: The instance registration endpoint (
POST /instances) acceptshealthUrlandmanagementUrlvalues without validating them against private IP ranges (RFC 1918, loopback, or link-local addresses) or cloud metadata endpoints. The internalRegistration.checkUrl()method performs only basic syntactic validation (isAbsolute()), with no block list enforced for internal address space such as169.254.0.0/16or10.0.0.0/8. - Trigger conditions: A single unauthenticated HTTP POST to the
/instancesendpoint is sufficient. No credentials, session token, API key, or user interaction are required. - Attack vector: An attacker submits a crafted instance registration payload with a malicious
healthUrl(e.g.,http://169.254.169.254/latest/meta-data/iam/security-credentials/) ormanagementUrl. The server’sStatusUpdatercomponent automatically polls the registeredhealthUrl, and theInstancesProxyControllerproxies subsequent requests targeting/instances/{id}/actuator/**directly to the registered URL — returning the full response body to the attacker. - Impact: Exfiltration of HTTP responses from any internally reachable service, including AWS, GCP, and Azure instance metadata service tokens and IAM credentials. In cloud-hosted environments, successful exploitation can enable full cloud account takeover. The CVSS v4.0 vector reflects a High Subsequent System Confidentiality impact (SC:H), with no authentication barrier.
Affected software
- Spring Boot Admin Server (
de.codecentric:spring-boot-admin-server): all versions before 4.1.2
Severity
- CVSS v3.1 Base Score: 8.6 (HIGH)
- Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N
Mitigation and recommended actions
- Immediate: Upgrade Spring Boot Admin Server to version 4.1.2 or later. This release introduces an SSRF check mechanism that validates registered URLs against private IP ranges and metadata endpoints prior to accepting instance registrations (fix commit
1f991ea, PR #5464). - If patching is not immediately possible:
- Restrict access to the
/instancesregistration endpoint via a firewall or reverse proxy, permitting only trusted internal source IPs. - Block outbound connections from the Spring Boot Admin Server host to link-local (
169.254.0.0/16) and RFC 1918 address ranges at the network perimeter. - Do not expose Spring Boot Admin Server directly to the internet; place it behind authenticated access controls.
- Restrict access to the
IONIX Status
The IONIX research team is tracking ongoing exploitation attempts and recommends immediate patching. Potentially affected assets are outlined in this post.

