Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-34361

CVE-2026-34361: HAPI FHIR SSRF Vulnerability

CVE-2026-34361 is a server-side request forgery flaw in HAPI FHIR that enables attackers to steal authentication tokens through domain prefix matching. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-34361 Overview

A critical Server-Side Request Forgery (SSRF) vulnerability exists in HAPI FHIR, a complete implementation of the HL7 FHIR standard for healthcare interoperability in Java. Prior to version 6.9.4, the FHIR Validator HTTP service exposes an unauthenticated /loadIG endpoint that makes outbound HTTP requests to attacker-controlled URLs. When combined with a startsWith() URL prefix matching flaw in the credential provider (ManagedWebAccessUtils.getServer()), an attacker can steal authentication tokens including Bearer tokens, Basic authentication credentials, and API keys configured for legitimate FHIR servers by registering a domain that prefix-matches a configured server URL.

Critical Impact

Attackers can steal healthcare system authentication credentials without any prior authentication, potentially compromising patient data and healthcare infrastructure through credential theft.

Affected Products

  • HAPI FHIR versions prior to 6.9.4
  • FHIR Validator HTTP service with /loadIG endpoint exposed
  • Systems using ManagedWebAccessUtils.getServer() for credential management

Discovery Timeline

  • 2026-03-31 - CVE CVE-2026-34361 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34361

Vulnerability Analysis

This vulnerability combines two distinct security flaws to enable credential theft. The first issue is an unauthenticated endpoint exposure—the FHIR Validator HTTP service exposes the /loadIG endpoint without requiring any form of authentication, allowing anyone with network access to trigger outbound HTTP requests from the vulnerable server.

The second and more severe issue lies in the credential provider logic within ManagedWebAccessUtils.getServer(). This function uses a flawed startsWith() URL prefix matching algorithm to determine which credentials should be attached to outbound requests. Instead of performing exact domain matching or proper URL parsing, the implementation checks if the target URL begins with a configured server URL prefix.

An attacker can exploit this by registering a malicious domain that prefix-matches a legitimate FHIR server URL (e.g., registering fhir.hospital.com.attacker.com to match credentials configured for fhir.hospital.com). When the attacker uses the /loadIG endpoint to request a resource from their malicious domain, the vulnerable credential provider incorrectly matches the attacker-controlled URL and attaches legitimate authentication tokens to the outbound request.

Root Cause

The root cause is CWE-552 (Files or Directories Accessible to External Parties) combined with improper URL validation. The startsWith() string comparison used in ManagedWebAccessUtils.getServer() fails to properly validate URL boundaries, treating https://legitimate-server.com.attacker.com as a valid match for credentials configured for https://legitimate-server.com. This logic flaw, combined with the unauthenticated /loadIG endpoint, creates an exploitable credential theft vulnerability.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker with network access to the FHIR Validator HTTP service can:

  1. Enumerate or guess legitimate FHIR server URLs that have configured credentials
  2. Register a malicious domain that prefix-matches the target server URL
  3. Send a crafted request to the /loadIG endpoint targeting their malicious domain
  4. Receive the authentication tokens (Bearer, Basic, or API keys) that the vulnerable server attaches to the outbound request

The vulnerability is exploited through HTTP requests to the /loadIG endpoint. When an attacker registers a domain like legitimate-fhir-server.com.malicious.com that prefix-matches a configured FHIR server URL legitimate-fhir-server.com, the credential provider's flawed startsWith() logic incorrectly determines the attacker's URL should receive authentication credentials. The attacker's server then captures these credentials when the FHIR Validator makes the outbound request. For detailed technical information, see the GitHub Security Advisory.

Detection Methods for CVE-2026-34361

Indicators of Compromise

  • Unusual outbound HTTP requests from FHIR Validator servers to unfamiliar domains
  • Access logs showing requests to /loadIG endpoint from external IP addresses
  • Authentication failures or credential revocations for FHIR server accounts
  • Domains registered that closely resemble legitimate FHIR server URLs

Detection Strategies

  • Monitor network traffic from FHIR Validator services for connections to unknown or recently registered domains
  • Implement logging and alerting on all /loadIG endpoint access attempts
  • Review DNS logs for requests to domains that prefix-match your legitimate FHIR server URLs
  • Deploy web application firewalls to restrict access to the /loadIG endpoint

Monitoring Recommendations

  • Enable detailed access logging for the FHIR Validator HTTP service
  • Configure alerts for outbound connections to domains not on an approved allowlist
  • Monitor for credential usage anomalies that may indicate stolen tokens are being used
  • Implement network segmentation to limit FHIR Validator's outbound connectivity

How to Mitigate CVE-2026-34361

Immediate Actions Required

  • Upgrade HAPI FHIR to version 6.9.4 or later immediately
  • Restrict network access to the /loadIG endpoint using firewall rules or reverse proxy configuration
  • Rotate all authentication credentials (Bearer tokens, Basic auth, API keys) configured for FHIR servers
  • Review logs for any suspicious access to the /loadIG endpoint prior to patching

Patch Information

The vulnerability has been patched in HAPI FHIR version 6.9.4. The fix addresses both the unauthenticated endpoint exposure and the flawed URL prefix matching logic in ManagedWebAccessUtils.getServer(). Organizations should upgrade to version 6.9.4 or later as soon as possible. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Block external access to the /loadIG endpoint at the network level until patching is possible
  • Deploy a reverse proxy that requires authentication before requests reach the FHIR Validator
  • Implement network egress filtering to restrict outbound connections from the FHIR Validator
  • Consider disabling the FHIR Validator HTTP service if not actively required
bash
# Example: Restrict access to /loadIG endpoint using nginx
location /loadIG {
    # Deny all external access until patched
    deny all;
    # Or restrict to internal networks only
    # allow 10.0.0.0/8;
    # allow 172.16.0.0/12;
    # allow 192.168.0.0/16;
    # deny all;
}

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechHapi Fhir

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-552
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34360: HAPI FHIR Validator SSRF Vulnerability

  • CVE-2026-34359: HAPI FHIR Auth Bypass Vulnerability

  • CVE-2026-33180: HAPI FHIR Information Disclosure Flaw

  • CVE-2024-51132: HAPI FHIR XXE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English