{"id":13370,"date":"2025-08-18T16:51:31","date_gmt":"2025-08-18T16:51:31","guid":{"rendered":"http:\/\/localhost\/?p=13370"},"modified":"2025-08-18T16:51:31","modified_gmt":"2025-08-18T16:51:31","slug":"exploit-for-path-traversal-in-hapifhir-hl7fhircore","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=13370","title":{"rendered":"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-08-18T21:27:30&#8243;,&#8221;description&#8221;:&#8221;\\n\\n# HAPI FHIR &#8211; HL7 FHIR Core Artifacts\\n\\n| CI Status (master) | \\n| :&#8212;: |\\n| [![Build Status][Badge-BuildPipeline]][Link-AzureMasterPipeline] |\\n\\nThis is the java core object handling code, with utilities (including validator), for the FHIR specification. \\nincluded in this repo: \\n\\n* org.fhir.fhir.utilities: Shared code used by all the other projects &#8211; including the internationalization code\\n* org.fhir.fhir.r5: Object models and utilities for R5 candidate (will change regularly as new R5 candidates are released)\\n* org.fhir.fhir.r4b: Object models and utilities for R4B\\n* org.fhir.fhir.r4: Object models and utilities for R4\\n* org.fhir.fhir.dstu3: Object models and utilities for STU3\\n* org.fhir.fhir.dstu2: Object models and utilities for STU2\\n* org.fhir.fhir.dstu2016may: Object models and utilities for an early STU3 candidate still used by some implementers\\n* org.fhir.fhir.convertors: Code to convert between versions, and other version independence code &#8211; uses all the above projects\\n* org.fhir.fhir.validation: The FHIR Java validator (note: based on R5 internally, but validates all the above versions)\\n* org.fhir.fhir.validation.cli: Holder project for releasing the FHIR validator as as single fat jar (will be removed in the future)\\n\\nThis code is used in all HAPI servers and clients, and also is the HL7 maintained \\nFHIR Validator. In addition, this is the core code for the HL7 maintained IG publisher\\nand FHIR main build publisher. As such, this code is considered an authoritatively \\ncorrect implementation of the core FHIR specification that it implements.\\n\\n\\n## Building this Project\\n\\n### Prerequisites\\n\\nThis project uses [Java](https:\/\/www.java.com) (minumum version 11), [Apache Maven](http:\/\/maven.apache.org), and [Lombok](https:\/\/projectlombok.org\/) to build. You can find detailed instructions on setting up this project in your IDE [here](https:\/\/hl7.github.io\/docs\/core\/getting-started).\\n\\n### Build Commands\\n\\nTo build and add artifacts to your local Maven repository:\\n\\n&#8220;`\\nmvn install\\n&#8220;`\\n\\nTo skip unit tests:\\n&#8220;`\\nmvn -Dmaven.test.skip install\\n&#8220;`\\n\\nTo clean and rebuild the terminology server caches:\\n\\n_clean_\\n&#8220;`\\nmvn clean -Dfhir.txcache.clean=true   \\n&#8220;`\\n\\n_rebuild_\\n&#8220;`\\nmvn test -Dfhir.txcache.rebuild=true\\n&#8220;`\\n\\n_The source contains cached terminology server responses for testing. If the expected responses have changed in any way, \\nthis cache should be cleaned and rebuilt with the above so that subsequent `mvn test` calls will have the most current \\nresponses cached._\\n\\n\\n## Releases\\n\\nThe built binary for the FHIR command-line validator is released through [GitHub releases][Link-GithubReleases] and can be downloaded directly [here][Link-GithubZipRelease]. For instructions on using this validator visit the [FHIR Validator Confluence page][Link-ConfluenceValidator].\\n\\nAll build artifacts are published on [OSS Sonatype][Link-Sonatype]. \\n\\n### Current Versions \\n| Project | Current Release | Latest SNAPSHOT |\\n| :&#8212;: | :&#8212;: | :&#8212;: |\\n| org.hl7.fhir.validation.cli | [![Release Artifacts][Badge-r4SonatypeRelease]][Link-cliSonatypeRelease] | [![Snapshot Artifact][Badge-cliSonatypeSnapshot]][Link-cliSonatypeSnapshot] |\\n| org.hl7.fhir.validation | [![Release Artifacts][Badge-validationSonatypeRelease]][Link-validationSonatypeRelease] | [![Snapshot Artifact][Badge-validationSonatypeSnapshot]][Link-validationSonatypeSnapshot] |\\n| org.hl7.fhir.dstu2 | [![Release Artifacts][Badge-dstu2SonatypeRelease]][Link-dstu2SonatypeRelease] | [![Snapshot Artifact][Badge-dstu2SonatypeSnapshot]][Link-dstu2SonatypeSnapshot] |\\n| org.hl7.fhir.dstu2016may | [![Release Artifacts][Badge-dstu2016maySonatypeRelease]][Link-dstu2016maySonatypeRelease] | [![Snapshot Artifact][Badge-dstu2016maySonatypeSnapshot]][Link-dstu2016maySonatypeSnapshot] |\\n| org.hl7.fhir.dstu3 | [![Release Artifacts][Badge-dstu3SonatypeRelease]][Link-dstu3SonatypeRelease] | [![Snapshot Artifact][Badge-dstu3SonatypeSnapshot]][Link-dstu3SonatypeSnapshot] |\\n| org.hl7.fhir.r4 | [![Release Artifacts][Badge-r4SonatypeRelease]][Link-r4SonatypeRelease] | [![Snapshot Artifact][Badge-r4SonatypeSnapshot]][Link-r4SonatypeSnapshot] |\\n| org.hl7.fhir.r5 | [![Release Artifacts][Badge-r5SonatypeRelease]][Link-r5SonatypeRelease] | [![Snapshot Artifact][Badge-r5SonatypeSnapshot]][Link-r5SonatypeSnapshot] |\\n\\nTo use these artifacts in your project will need to add the proper dependency to your `pom.xml` file, or your `build.gradle.kts` file.\\n\\n###### pom.xml\\n&#8220;`\\n\\n    \\n        oss-snapshot\\n        https:\/\/oss.sonatype.org\/content\/repositories\/snapshots\/\\n    \\n    \\n        oss-releases\\n        https:\/\/oss.sonatype.org\/service\/local\/staging\/deploy\/maven2\/\\n    \\n \\n&#8220;`\\n###### build.gradle.kts\\n\\n&#8220;`\\nrepositories {\\n    maven {\\n        url = uri(\\&#8221;https:\/\/oss.sonatype.org\/content\/repositories\/snapshots\\&#8221;)\\n    }\\n    maven {\\n        url = uri(\\&#8221;https:\/\/oss.sonatype.org\/service\/local\/staging\/deploy\/maven2\/\\&#8221;)\\n    }\\n}\\n&#8220;`\\n\\nAfter adding the necessary repositories, you can include the libraries as follows:\\n\\n##### org.hl7.fhir.validation.cli\\n###### Maven\\n&#8220;`xml\\n\\n    ca.uhn.hapi.fhir\\n    org.hl7.fhir.validation.cli\\n    (latest version)\\n\\n&#8220;`\\n\\n###### Gradle\\n&#8220;`groovy\\ncompile group: &#8216;ca.uhn.hapi.fhir&#8217;, name: &#8216;org.hl7.fhir.validation.cli&#8217;, version: &#8216;(latest version)&#8217;\\n&#8220;`\\n\\n##### org.hl7.fhir.dstu2\\n###### Maven\\n&#8220;`xml\\n\\n    ca.uhn.hapi.fhir\\n    hapi-fhir-structures-dstu2\\n    (latest version)\\n\\n&#8220;`\\n\\n###### Gradle\\n&#8220;`groovy\\ncompile group: &#8216;ca.uhn.hapi.fhir&#8217;, name: &#8216;hapi-fhir-structures-dstu2&#8217;, version: &#8216;(latest version)&#8217;\\n&#8220;`\\n\\n##### org.hl7.fhir.dstu3\\n###### Maven\\n&#8220;`xml\\n\\n    ca.uhn.hapi.fhir\\n    hapi-fhir-structures-dstu3\\n    (latest version)\\n\\n&#8220;`\\n\\n###### Gradle\\n&#8220;`groovy\\ncompile group: &#8216;ca.uhn.hapi.fhir&#8217;, name: &#8216;hapi-fhir-structures-dstu3&#8217;, version: &#8216;(latest version)&#8217;\\n&#8220;`\\n\\n##### org.hl7.fhir.r4\\n###### Maven\\n&#8220;`xml\\n\\n    ca.uhn.hapi.fhir\\n    hapi-fhir-structures-r4\\n    (latest version)\\n\\n&#8220;`\\n\\n###### Gradle\\n&#8220;`groovy\\ncompile group: &#8216;ca.uhn.hapi.fhir&#8217;, name: &#8216;hapi-fhir-structures-r4&#8217;, version: &#8216;(latest version)&#8217;\\n&#8220;`\\n\\n##### org.hl7.fhir.r5\\n###### Maven\\n&#8220;`xml\\n\\n    ca.uhn.hapi.fhir\\n    hapi-fhir-structures-r5\\n    (latest version)\\n\\n&#8220;`\\n\\n###### Gradle\\n&#8220;`groovy\\ncompile group: &#8216;ca.uhn.hapi.fhir&#8217;, name: &#8216;hapi-fhir-structures-r5&#8217;, version: &#8216;(latest version)&#8217;\\n&#8220;`\\n\\n## CI\/CD\\n\\nAll integration and delivery done on Azure pipelines. Azure project can be viewed [here][Link-AzureProject].\\n\\n* **Pull Request Pipeline** is automatically run for every Pull Request to ensure that the project can be built via maven. [[Azure Pipeline]][Link-AzurePullRequestPipeline] [[source]](pull-request-pipeline.yml)\\n* **Master Branch Pipeline** is automatically run whenever code is merged to the master branch and builds the SNAPSHOT binaries distributed to OSSRH [[Azure Pipeline]][Link-AzureMasterPipeline][[source]](master-branch-pipeline.yml)\\n* **Release Branch Pipeline** is run manually whenever a release is ready to be made. It builds the [release binaries](#releases), distributes them to artifact repositories and sends release notifications. [[Azure Pipeline]][Link-AzureReleasePipeline][[source]](release-branch-pipeline.yml)\\n\\nA brief overview of our publishing process is [here][Link-Publishing].\\n\\nFor more detailed instructions on cutting a release, please read [the wiki][Link-PublishingRelease]\\n\\n## Maintenance\\n\\nHave you found an issue? Do you have a feature request? Great! Submit it [here][Link-GithubIssues] and we&#8217;ll try to fix it as soon as possible.\\n\\nThis project is maintained by [Grahame Grieve][Link-grahameGithub], [James Agnew][Link-jamesGithub], [David Otasek][Link-davidGithub] and [Mark Iantorno][Link-markGithub] on behalf of the FHIR community.\\n\\n\\n[Link-ConfluenceValidator]: https:\/\/confluence.hl7.org\/display\/FHIR\/Using+the+FHIR+Validator\\n\\n[Link-SnapshotPipeline]: https:\/\/dev.azure.com\/fhir-pipelines\/fhir-core-library\/_build\/latest?definitionId=17\\u0026branchName=master\\n[Link-dstu2SonatypeSnapshot]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=snapshots\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.dstu2\\u0026v=LATEST \\&#8221;Sonatype Snapshot\\&#8221;\\n[Link-dstu2SonatypeRelease]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=releases\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.dstu2\\u0026v=LATEST \\&#8221;Sonatype Release\\&#8221;\\n[Link-dstu2016maySonatypeSnapshot]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=snapshots\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.dstu2016may\\u0026v=LATEST \\&#8221;Sonatype Snapshot\\&#8221;\\n[Link-dstu2016maySonatypeRelease]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=releases\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.dstu2016may\\u0026v=LATEST \\&#8221;Sonatype Release\\&#8221;\\n[Link-dstu3SonatypeSnapshot]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=snapshots\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.dstu3\\u0026v=LATEST \\&#8221;Sonatype Snapshot\\&#8221;\\n[Link-dstu3SonatypeRelease]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=releases\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.dstu3\\u0026v=LATEST \\&#8221;Sonatype Release\\&#8221;\\n[Link-r4SonatypeSnapshot]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=snapshots\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.r4\\u0026v=LATEST \\&#8221;Sonatype Snapshot\\&#8221;\\n[Link-r4SonatypeRelease]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=releases\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.r4\\u0026v=LATEST \\&#8221;Sonatype Release\\&#8221;\\n[Link-r5SonatypeSnapshot]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=snapshots\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.r5\\u0026v=LATEST \\&#8221;Sonatype Snapshot\\&#8221;\\n[Link-r5SonatypeRelease]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=releases\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.r5\\u0026v=LATEST \\&#8221;Sonatype Release\\&#8221;\\n[Link-cliSonatypeSnapshot]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=snapshots\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.validation.cli\\u0026v=LATEST \\&#8221;Sonatype Snapshot\\&#8221;\\n[Link-cliSonatypeRelease]: https:\/\/github.com\/hapifhir\/org.hl7.fhir.core\/releases\/latest\/download\/validator_cli.jar\\n[Link-validationSonatypeSnapshot]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=snapshots\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.validation\\u0026v=LATEST \\&#8221;Sonatype Snapshot\\&#8221;\\n[Link-validationSonatypeRelease]: https:\/\/oss.sonatype.org\/service\/local\/artifact\/maven\/redirect?r=releases\\u0026g=ca.uhn.hapi.fhir\\u0026a=org.hl7.fhir.validation\\u0026v=LATEST \\&#8221;Sonatype Release\\&#8221;\\n\\n[Link-AzureProject]: https:\/\/dev.azure.com\/fhir-pipelines\/fhir-core-library\\n[Link-AzureMasterPipeline]: https:\/\/dev.azure.com\/fhir-pipelines\/fhir-core-library\/_build\/latest?definitionId=29\\u0026branchName=master\\n[Link-AzurePullRequestPipeline]: https:\/\/dev.azure.com\/fhir-pipelines\/fhir-core-library\/_build?definitionId=31\\n[Link-AzureReleasePipeline]: https:\/\/dev.azure.com\/fhir-pipelines\/fhir-core-library\/_build?definitionId=30\\n\\n[Link-sonatype]: https:\/\/oss.sonatype.org\/\\n[Link-davidGithub]: https:\/\/github.com\/dotasek\\n[Link-grahameGithub]: https:\/\/github.com\/grahamegrieve\\n[Link-jamesGithub]: https:\/\/github.com\/jamesagnew\\n[Link-markGithub]: https:\/\/github.com\/markiantorno\\n[Link-PublishingRelease]: https:\/\/hl7.github.io\/docs\/ci-cd-building-release\\n[Link-Publishing]: https:\/\/hl7.github.io\/docs\/ci-cd-publishing-binaries\\n[Link-GithubIssues]: https:\/\/github.com\/hapifhir\/org.hl7.fhir.core\/issues\\n[Link-GithubReleases]: https:\/\/github.com\/hapifhir\/org.hl7.fhir.core\/releases\\n[Link-GithubZipRelease]: https:\/\/github.com\/hapifhir\/org.hl7.fhir.core\/releases\/latest\/download\/validator_cli.jar\\n\\n[Badge-BuildPipeline]: https:\/\/dev.azure.com\/fhir-pipelines\/fhir-core-library\/_apis\/build\/status\/Master%20Branch%20Pipeline?branchName=master\\n[Badge-SnapshotPipeline]: https:\/\/dev.azure.com\/fhir-pipelines\/fhir-core-library\/_apis\/build\/status\/Module%20SNAPSHOT%20Publisher?branchName=master\\n[Badge-dstu2SonatypeRelease]: https:\/\/img.shields.io\/nexus\/r\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.dstu2.svg \\&#8221;Sonatype Releases\\&#8221;\\n[Badge-dstu2SonatypeSnapshot]: https:\/\/img.shields.io\/nexus\/s\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.dstu2.svg \\&#8221;Sonatype Snapshots\\&#8221;\\n[Badge-dstu2016maySonatypeRelease]: https:\/\/img.shields.io\/nexus\/r\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.dstu2016may.svg \\&#8221;Sonatype Releases\\&#8221;\\n[Badge-dstu2016maySonatypeSnapshot]: https:\/\/img.shields.io\/nexus\/s\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.dstu2016may.svg \\&#8221;Sonatype Snapshots\\&#8221;\\n[Badge-dstu3SonatypeRelease]: https:\/\/img.shields.io\/nexus\/r\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.dstu3.svg \\&#8221;Sonatype Releases\\&#8221;\\n[Badge-dstu3SonatypeSnapshot]: https:\/\/img.shields.io\/nexus\/s\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.dstu3.svg \\&#8221;Sonatype Snapshots\\&#8221;\\n[Badge-r4SonatypeRelease]: https:\/\/img.shields.io\/nexus\/r\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.r4.svg \\&#8221;Sonatype Releases\\&#8221;\\n[Badge-r4SonatypeSnapshot]: https:\/\/img.shields.io\/nexus\/s\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.r4.svg \\&#8221;Sonatype Snapshots\\&#8221;\\n[Badge-r5SonatypeRelease]: https:\/\/img.shields.io\/nexus\/r\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.r5.svg \\&#8221;Sonatype Releases\\&#8221;\\n[Badge-r5SonatypeSnapshot]: https:\/\/img.shields.io\/nexus\/s\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.r5.svg \\&#8221;Sonatype Snapshots\\&#8221;\\n[Badge-cliSonatypeRelease]: https:\/\/img.shields.io\/nexus\/r\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.validation.cli.svg \\&#8221;Sonatype Releases\\&#8221;\\n[Badge-cliSonatypeSnapshot]: https:\/\/img.shields.io\/nexus\/s\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.validation.cli.svg \\&#8221;Sonatype Snapshots\\&#8221;\\n[Badge-validationSonatypeRelease]: https:\/\/img.shields.io\/nexus\/r\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.validation.svg \\&#8221;Sonatype Releases\\&#8221;\\n[Badge-validationSonatypeSnapshot]: https:\/\/img.shields.io\/nexus\/s\/https\/oss.sonatype.org\/ca.uhn.hapi.fhir\/org.hl7.fhir.validation.svg \\&#8221;Sonatype Snapshots\\&#8221;\\n&#8221;,&#8221;published&#8221;:&#8221;2025-08-17T10:27:15&#8243;,&#8221;modified&#8221;:&#8221;2025-08-17T10:29:12&#8243;,&#8221;type&#8221;:&#8221;githubexploit&#8221;,&#8221;title&#8221;:&#8221;Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;FF223557-516A-5CA6-87CF-7F54E811DC11&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2023-28465&#8243;],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:7.5,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:N\/A:N&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/github.com\/shoucheng3\/hapifhir__org_hl7_fhir_core_CVE-2023-28465_5-6-105&#8243;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-08-18T21:27:30&#8243;,&#8221;description&#8221;:&#8221;\\n\\n# HAPI FHIR &#8211; HL7 FHIR Core Artifacts\\n\\n| CI Status (master) | \\n| :&#8212;: |\\n| [![Build Status][Badge-BuildPipeline]][Link-AzureMasterPipeline] |\\n\\nThis is the java core object handling code,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,16,12,32,15,13,7,11,5],"class_list":["post-13370","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-75","tag-exploit","tag-githubexploit","tag-high","tag-news","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=13370\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-08-18T21:27:30&#8243;,&#8221;description&#8221;:&#8221;nn# HAPI FHIR &#8211; HL7 FHIR Core Artifactsnn| CI Status (master) | n| :&#8212;: |n| [![Build Status][Badge-BuildPipeline]][Link-AzureMasterPipeline] |nnThis is the java core object handling code,...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=13370\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-18T16:51:31+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=13370#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=13370\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11\",\"datePublished\":\"2025-08-18T16:51:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=13370\"},\"wordCount\":2212,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-7.5\",\"exploit\",\"githubexploit\",\"HIGH\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=13370#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=13370\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=13370\",\"name\":\"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-08-18T16:51:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=13370#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=13370\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=13370#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=13370","og_locale":"en_US","og_type":"article","og_title":"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-08-18T21:27:30&#8243;,&#8221;description&#8221;:&#8221;nn# HAPI FHIR &#8211; HL7 FHIR Core Artifactsnn| CI Status (master) | n| :&#8212;: |n| [![Build Status][Badge-BuildPipeline]][Link-AzureMasterPipeline] |nnThis is the java core object handling code,...","og_url":"https:\/\/zero.redgem.net\/?p=13370","og_site_name":"zero redgem","article_published_time":"2025-08-18T16:51:31+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=13370#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=13370"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11","datePublished":"2025-08-18T16:51:31+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=13370"},"wordCount":2212,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-7.5","exploit","githubexploit","HIGH","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=13370#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=13370","url":"https:\/\/zero.redgem.net\/?p=13370","name":"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-08-18T16:51:31+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=13370#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=13370"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=13370#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Exploit for Path Traversal in Hapifhir Hl7_Fhir_Core_FF223557-516A-5CA6-87CF-7F54E811DC11"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/13370","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=13370"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/13370\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=13370"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=13370"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=13370"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}