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-33915

CVE-2026-33915: OpenEMR Authorization Bypass Vulnerability

CVE-2026-33915 is an authorization bypass flaw in OpenEMR that allows authenticated API users to modify insurance company records without proper permissions. This article covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33915 Overview

OpenEMR is a free and open source electronic health records and medical practice management application. Prior to version 8.0.0.3, five insurance company REST API routes are missing the RestConfig::request_authorization_check() call that every other data-modifying route in the standard API uses. This allows any authenticated API user to create and modify insurance company records even if their OpenEMR user account does not have administrative ACL permissions. Version 8.0.0.3 patches the issue.

Critical Impact

Authenticated users can bypass access control lists (ACLs) to create and modify insurance company records without proper administrative permissions, potentially compromising financial and insurance data integrity in healthcare environments.

Affected Products

  • OpenEMR versions prior to 8.0.0.3
  • OpenEMR REST API insurance company endpoints

Discovery Timeline

  • 2026-03-26 - CVE-2026-33915 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33915

Vulnerability Analysis

This vulnerability represents a Missing Authorization (CWE-862) flaw in OpenEMR's REST API implementation. The affected insurance company API routes fail to invoke the standard RestConfig::request_authorization_check() function that is consistently used across all other data-modifying endpoints in the application.

The flaw allows any user with valid API authentication credentials to perform unauthorized operations on insurance company records, regardless of their assigned ACL permissions within OpenEMR. This is particularly concerning in healthcare settings where insurance company data is sensitive and modifications could impact billing workflows, claims processing, and financial reporting.

The vulnerability requires network access and low-privileged authentication, but no user interaction. While it does not enable complete system compromise, it permits unauthorized read and write operations on insurance company data.

Root Cause

The root cause is an inconsistent implementation of authorization checks across the REST API endpoints. While the majority of OpenEMR's API routes properly call RestConfig::request_authorization_check() to validate that the authenticated user has appropriate ACL permissions for the requested operation, five insurance company-related routes were implemented without this critical security check.

This type of inconsistency often arises when new API endpoints are added without following established security patterns, or when code is refactored without comprehensive security review.

Attack Vector

An attacker with any level of authenticated API access to an OpenEMR instance can exploit this vulnerability by making direct REST API calls to the affected insurance company endpoints. The attack does not require administrative privileges—only valid API credentials.

The attacker could:

  1. Enumerate existing insurance company records via GET requests
  2. Create fraudulent insurance company entries
  3. Modify existing insurance company data to alter billing information
  4. Potentially disrupt insurance claim processing and financial workflows
php
// Security patch in apis/routes/_rest_routes_standard.inc.php
// Adding the missing authorization check to the insurance company GET route
      */
     "GET /api/insurance_company" => function (HttpRestRequest $request) {
+        RestConfig::request_authorization_check($request, "acct", "bill");
         $return = (new InsuranceCompanyRestController())->getAll();

         return $return;

Source: GitHub Commit Update

Detection Methods for CVE-2026-33915

Indicators of Compromise

  • Unusual API activity patterns from non-administrative user accounts accessing insurance company endpoints
  • Audit logs showing insurance company record modifications by users without billing or accounting ACL permissions
  • Unexpected changes to insurance company records without corresponding administrative user activity
  • API access logs showing GET, POST, or PUT requests to /api/insurance_company endpoints from low-privilege accounts

Detection Strategies

  • Monitor OpenEMR API access logs for requests to insurance company endpoints from users without acct or bill ACL permissions
  • Implement alerting on insurance company record modifications that don't correlate with authorized administrative actions
  • Review user permission assignments and compare against API activity to identify privilege misuse
  • Deploy web application firewall rules to detect unauthorized API access patterns

Monitoring Recommendations

  • Enable comprehensive API request logging in OpenEMR to capture all insurance company endpoint access
  • Establish baseline API usage patterns and alert on deviations, particularly for insurance-related endpoints
  • Implement database-level audit logging for insurance company table modifications
  • Review API authentication logs for accounts accessing sensitive endpoints without business justification

How to Mitigate CVE-2026-33915

Immediate Actions Required

  • Upgrade OpenEMR to version 8.0.0.3 or later immediately
  • Review audit logs for any unauthorized insurance company record modifications prior to patching
  • Audit all API user accounts to verify appropriate permission assignments
  • Consider temporarily restricting API access to essential users until the patch is applied

Patch Information

OpenEMR version 8.0.0.3 addresses this vulnerability by adding the missing RestConfig::request_authorization_check() calls to all five affected insurance company REST API routes. The patch ensures that the acct and bill ACL permissions are properly validated before allowing access to these endpoints.

For detailed patch information, see the GitHub Security Advisory GHSA-ww94-26v7-x4gp and the GitHub Release v8.0.0.3.

Workarounds

  • Restrict API access at the network level using firewall rules or reverse proxy configurations until patching is possible
  • Disable API access for non-essential users temporarily
  • Implement additional monitoring and alerting on insurance company endpoint access
  • Consider placing OpenEMR behind an application-layer firewall with custom rules to block unauthorized insurance company API requests
bash
# Example: Restrict API access at the web server level (Apache)
# Add to .htaccess or VirtualHost configuration to limit insurance_company endpoint access

<Location "/apis/api/insurance_company">
    # Only allow access from trusted administrative IP addresses
    Require ip 10.0.0.0/8 192.168.1.0/24
</Location>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpen Emr

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • GitHub Release v8.0.0.3
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-ww94-26v7-x4gp
  • Related CVEs
  • CVE-2026-32120: OpenEMR Auth Bypass Vulnerability

  • CVE-2026-33934: OpenEMR Authorization Bypass Vulnerability

  • CVE-2026-33918: OpenEMR Auth Bypass Vulnerability

  • CVE-2026-34051: OpenEMR Authentication Bypass 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