The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-23955

CVE-2026-23955: EVerest Information Disclosure Vulnerability

CVE-2026-23955 is an information disclosure flaw in EVerest EV charging software that allows malicious operators to read unintended memory regions. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-23955 Overview

CVE-2026-23955 is a memory information disclosure vulnerability in EVerest, an open-source EV charging software stack. The vulnerability exists in error handling code where integer values are incorrectly concatenated to literal strings. Due to the nature of C/C++ pointer arithmetic, this implementation flaw results in unintended memory reads rather than the intended string representation of integer values. A malicious operator with local access could exploit this vulnerability to read sensitive memory regions, including the heap and stack.

Critical Impact

Exploitation allows unauthorized reading of sensitive memory regions including heap and stack data, potentially exposing credentials, cryptographic keys, or other sensitive information processed by the EV charging infrastructure.

Affected Products

  • EVerest everest-core versions prior to 2025.9.0
  • EV charging stations and infrastructure utilizing affected EVerest software stack
  • Deployments running unpatched EVerest implementations

Discovery Timeline

  • 2026-01-21 - CVE CVE-2026-23955 published to NVD
  • 2026-01-21 - Last updated in NVD database

Technical Details for CVE-2026-23955

Vulnerability Analysis

This vulnerability falls under CWE-1046 (Creation of Immutable Text Using String Concatenation). The flaw occurs in multiple locations within the EVerest codebase where error handling routines construct error messages by concatenating integer values with string literals.

In compiled languages like C/C++, when an integer is added to a string literal (which decays to a pointer), the compiler interprets this as pointer arithmetic rather than string concatenation. Instead of appending the string representation of the integer to the error message, the operation advances the string pointer by that integer value, causing the program to read from an unintended memory location.

This behavior differs significantly from interpreted languages where similar syntax would result in string conversion and concatenation. The mismatch between developer expectation (interpreted-language behavior) and actual behavior (pointer arithmetic) creates the security vulnerability.

Root Cause

The root cause is improper string handling in C/C++ error construction code. When throwing errors, developers used direct addition of integer values to string literals, expecting the integers to be converted to their string representation. However, in C/C++, adding an integer to a char* pointer performs pointer arithmetic, advancing the pointer by that many bytes rather than concatenating the integer's string representation.

Attack Vector

The attack requires local access with high privileges (operator-level access). A malicious operator can trigger error conditions with controlled integer values, causing the software to read from arbitrary memory offsets relative to the original string literal's location. By carefully crafting the integer values used in error generation, an attacker can:

  1. Trigger specific error handling paths in the application
  2. Control the integer value that gets added to string pointers
  3. Cause the application to read and potentially expose memory contents from heap or stack regions
  4. Extract sensitive information such as credentials, session tokens, or internal state data

The vulnerability requires user interaction (the operator must actively trigger error conditions) and is limited to local access scenarios typical in EV charging infrastructure management contexts.

Detection Methods for CVE-2026-23955

Indicators of Compromise

  • Unusual error messages containing unexpected or garbled characters in EVerest logs
  • Error messages displaying memory content that appears as random data or binary fragments
  • Repeated triggering of specific error conditions by operator accounts
  • Log entries showing abnormal string content in exception handling paths

Detection Strategies

  • Monitor EVerest application logs for malformed or suspicious error message content
  • Implement anomaly detection for operator actions that repeatedly trigger error conditions
  • Review authentication logs for unusual patterns of privileged access to charging infrastructure
  • Deploy memory access monitoring tools to detect out-of-bounds read operations

Monitoring Recommendations

  • Enable verbose logging on EVerest deployments to capture error handling activity
  • Implement SIEM rules to alert on unusual error message patterns in EV charging infrastructure
  • Monitor for repeated error triggering behavior that may indicate exploitation attempts
  • Conduct regular log analysis focusing on error handling paths and exception data

How to Mitigate CVE-2026-23955

Immediate Actions Required

  • Upgrade EVerest everest-core to version 2025.9.0 or later immediately
  • Audit operator access logs for any suspicious error-triggering activity
  • Review and restrict operator privileges to minimize potential exploitation impact
  • Implement network segmentation to isolate EV charging infrastructure from untrusted networks

Patch Information

The vulnerability is fixed in EVerest version 2025.9.0. The patch addresses the improper string concatenation by implementing proper integer-to-string conversion before constructing error messages. Organizations should upgrade to the patched version as soon as possible. For detailed patch information, see the GitHub Security Advisory.

Workarounds

  • Restrict operator access to trusted personnel only until patching is complete
  • Implement additional access controls and monitoring on EVerest management interfaces
  • Consider disabling verbose error reporting in production environments as a temporary measure
  • Deploy network-level controls to limit access to EVerest management functions
  • Enable audit logging for all operator activities to detect potential exploitation attempts

Note: These workarounds reduce risk but do not fully mitigate the vulnerability. Upgrading to version 2025.9.0 is the recommended remediation.

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechEverest

  • SeverityMEDIUM

  • CVSS Score4.2

  • EPSS Probability0.01%

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

  • CVE-2026-33015: EVerest Auth Bypass Vulnerability

  • CVE-2026-33009: EVerest Race Condition Vulnerability

  • CVE-2026-29044: 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