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

CVE-2026-29044: EVerest Auth Bypass Vulnerability

CVE-2026-29044 is an authorization bypass flaw in EVerest EV charging software that allows attackers to continue charging after authorization withdrawal through timing exploitation. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 27, 2026

CVE-2026-29044 Overview

CVE-2026-29044 is an authorization bypass vulnerability in EVerest, an open-source EV charging software stack. The vulnerability exists in the handling of WithdrawAuthorization events, where improper timing in the authorization flow allows charging sessions to continue even after authorization has been withdrawn. This represents a classic race condition that can be exploited to defeat authorization controls in EV charging infrastructure.

Critical Impact

Attackers with network access and high privileges can exploit timing conditions to continue EV charging sessions after authorization withdrawal, potentially resulting in unauthorized energy consumption and billing fraud.

Affected Products

  • EVerest EV charging software stack versions prior to 2026.02.0

Discovery Timeline

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

Technical Details for CVE-2026-29044

Vulnerability Analysis

The vulnerability is classified under CWE-863 (Incorrect Authorization), indicating a fundamental flaw in how the EVerest software validates and enforces authorization decisions during active charging sessions.

The core issue lies in the interaction between the WithdrawAuthorization process and the TransactionStarted event within the AuthHandler component. When WithdrawAuthorization is processed before the TransactionStarted event completes, the AuthHandler incorrectly determines that transaction_active=false. This erroneous state assessment leads the handler to only invoke the withdraw_authorization_callback function.

While this callback path correctly calls Charger::deauthorize(), the actual StopTransaction command is never issued when the charger is in the Charging state. This creates a window where the logical authorization state becomes desynchronized from the physical charging operation, allowing the charging process to continue indefinitely despite authorization being withdrawn.

Root Cause

The root cause is a race condition in the authorization state machine where the timing of WithdrawAuthorization relative to TransactionStarted events is not properly synchronized. The AuthHandler makes authorization decisions based on the transaction_active flag without adequately ensuring that this flag reflects the actual physical state of the charging session. This design flaw fails to account for the asynchronous nature of transaction state transitions, resulting in a TOCTOU (Time-of-Check to Time-of-Use) vulnerability.

Attack Vector

An attacker with network access and elevated privileges can exploit this vulnerability by manipulating the timing of authorization withdrawal requests. By sending a WithdrawAuthorization command at a precise moment—after a charging session has physically started but before the TransactionStarted event has been fully processed—the attacker can cause the system to enter an inconsistent state where charging continues without valid authorization.

The attack requires high privileges and precise timing (high attack complexity), which limits the exploitability. However, successful exploitation could result in unauthorized energy consumption, billing discrepancies, and potential manipulation of EV charging infrastructure.

Detection Methods for CVE-2026-29044

Indicators of Compromise

  • Charging sessions that continue after authorization withdrawal events are logged
  • Discrepancies between authorization logs and actual energy consumption records
  • Unusual patterns of WithdrawAuthorization requests timed near TransactionStarted events
  • Billing anomalies indicating energy consumption without corresponding valid authorization

Detection Strategies

  • Monitor AuthHandler logs for sequences where withdraw_authorization_callback is invoked without a corresponding StopTransaction command
  • Implement correlation analysis between authorization state changes and physical charging state
  • Alert on charging sessions that exceed expected duration following authorization withdrawal
  • Analyze timing patterns of authorization-related API calls for potential exploitation attempts

Monitoring Recommendations

  • Enable detailed logging of all authorization state transitions including timestamps
  • Implement real-time monitoring of the relationship between transaction_active flag states and physical charger states
  • Deploy anomaly detection for billing discrepancies linked to authorization events
  • Regularly audit charging logs for sessions that continued after deauthorization

How to Mitigate CVE-2026-29044

Immediate Actions Required

  • Upgrade EVerest to version 2026.02.0 or later, which contains the security patch
  • Review charging session logs for any evidence of exploitation
  • Implement additional monitoring for authorization state inconsistencies
  • Consider temporarily restricting network access to EV charging infrastructure pending patch deployment

Patch Information

The EVerest development team has addressed this vulnerability in version 2026.02.0. The patch ensures that StopTransaction is properly invoked when authorization is withdrawn during active charging sessions, regardless of the timing of the TransactionStarted event. Detailed patch information is available in the GitHub Security Advisory.

Workarounds

  • Implement additional application-level checks to verify charging state before processing authorization withdrawals
  • Deploy network segmentation to restrict access to the EV charging management interface
  • Enable enhanced logging and manual review of authorization events until the patch can be applied
  • Consider implementing a secondary confirmation mechanism for StopTransaction commands during the charging state

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechEverest

  • SeverityMEDIUM

  • CVSS Score5.0

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33014: EVerest Auth Bypass Vulnerability

  • CVE-2026-33015: EVerest Auth Bypass Vulnerability

  • CVE-2026-24003: EVerest Auth Bypass Vulnerability

  • CVE-2025-68140: EVerest Auth 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