VDB
KO
HIGH 7.5

GHSA-7cmj-v6x8-frvv

org.hl7.fhir.core: ReDoS via FHIRPath matches()/replaceMatches() in FHIR Validator HTTP Endpoint

Details

# Summary All implementations of FHIRPathEngine accept arbitrary FHIRPath expressions and evaluate them without input validation. The utility intended to secure this evaluation did so incorrectly, and did not fully cover all places in which evaluation was being done. An attacker can send a resource containing an evil regex pattern that causes catastrophic backtracking, exhausting system resources, and causing Denial-of-Service.

## Details The vulnerability exists in regex execution in FHIRPathEngine implementations across multiple code modules. The FHIRPath functions matches(), matchesFull(), and replaceMatches() pass user-controlled regular expressions to Java's Pattern.compile() and String.replaceAll() through a utility class designed to time out after a specified interval. That utility correctly cancelled a single executor thread and returned with an exception, but the execution within the thread had no means to listen for this cancellation and would persist. Furthermore, three modules contained method calls in FHIRPathEngine that were not protected by this utility class.

## Why this is exploitable:

Java's Pattern.compile() with a pattern like (a+)+$ against input "aaaaaaaaaaaaaaaaaaaaaa!" causes exponential backtracking (O(2^n) time complexity).

## Impact CPU Exhaustion: The exponential backtracking in Java's regex engine consumes 100% of a CPU core for the duration of the hang (effectively infinite for sufficiently long input strings) for callers of FHIRPathEngine.

Are you affected?

Enter the version of the package you're using.

Affected packages

Maven / ca.uhn.hapi.fhir:org.hl7.fhir.dstu2
Introduced in: 6.9.5 Fixed in: 6.9.9
Fix # pom.xml: bump <version>6.9.9</version> for ca.uhn.hapi.fhir:org.hl7.fhir.dstu2
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.dstu2016may
Introduced in: 6.9.5 Fixed in: 6.9.9
Fix # pom.xml: bump <version>6.9.9</version> for ca.uhn.hapi.fhir:org.hl7.fhir.dstu2016may
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.dstu3
Introduced in: 6.9.5 Fixed in: 6.9.9
Fix # pom.xml: bump <version>6.9.9</version> for ca.uhn.hapi.fhir:org.hl7.fhir.dstu3
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.r4
Introduced in: 6.9.5 Fixed in: 6.9.9
Fix # pom.xml: bump <version>6.9.9</version> for ca.uhn.hapi.fhir:org.hl7.fhir.r4
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.r4b
Introduced in: 6.9.5 Fixed in: 6.9.9
Fix # pom.xml: bump <version>6.9.9</version> for ca.uhn.hapi.fhir:org.hl7.fhir.r4b
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.r5
Introduced in: 6.9.5 Fixed in: 6.9.9
Fix # pom.xml: bump <version>6.9.9</version> for ca.uhn.hapi.fhir:org.hl7.fhir.r5
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.validation
Introduced in: 6.9.5 Fixed in: 6.9.9
Fix # pom.xml: bump <version>6.9.9</version> for ca.uhn.hapi.fhir:org.hl7.fhir.validation
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.validation.cli
Introduced in: 6.9.5 Fixed in: 6.9.9
Fix # pom.xml: bump <version>6.9.9</version> for ca.uhn.hapi.fhir:org.hl7.fhir.validation.cli
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.dstu2
Introduced in: 0 Fixed in: 6.9.4.2
Fix # pom.xml: bump <version>6.9.4.2</version> for ca.uhn.hapi.fhir:org.hl7.fhir.dstu2
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.dstu2016may
Introduced in: 0 Fixed in: 6.9.4.2
Fix # pom.xml: bump <version>6.9.4.2</version> for ca.uhn.hapi.fhir:org.hl7.fhir.dstu2016may
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.dstu3
Introduced in: 0 Fixed in: 6.9.4.2
Fix # pom.xml: bump <version>6.9.4.2</version> for ca.uhn.hapi.fhir:org.hl7.fhir.dstu3
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.r4
Introduced in: 0 Fixed in: 6.9.4.2
Fix # pom.xml: bump <version>6.9.4.2</version> for ca.uhn.hapi.fhir:org.hl7.fhir.r4
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.r4b
Introduced in: 0 Fixed in: 6.9.4.2
Fix # pom.xml: bump <version>6.9.4.2</version> for ca.uhn.hapi.fhir:org.hl7.fhir.r4b
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.r5
Introduced in: 0 Fixed in: 6.9.4.2
Fix # pom.xml: bump <version>6.9.4.2</version> for ca.uhn.hapi.fhir:org.hl7.fhir.r5
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.validation
Introduced in: 0 Fixed in: 6.9.4.2
Fix # pom.xml: bump <version>6.9.4.2</version> for ca.uhn.hapi.fhir:org.hl7.fhir.validation
Maven / ca.uhn.hapi.fhir:org.hl7.fhir.validation.cli
Introduced in: 0 Fixed in: 6.9.4.2
Fix # pom.xml: bump <version>6.9.4.2</version> for ca.uhn.hapi.fhir:org.hl7.fhir.validation.cli

References