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-2025-68136

CVE-2025-68136: EVerest Use-After-Free Vulnerability

CVE-2025-68136 is a use-after-free vulnerability in EVerest EV charging software stack that can lead to null pointer dereference. This post explains the technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2025-68136 Overview

CVE-2025-68136 is a null pointer dereference vulnerability in EVerest, an open-source EV charging software stack. The vulnerability exists in the Session Discovery Protocol (SDP) request handling mechanism, where improper resource management leads to a denial of service condition. When the module receives an SDP request, it creates new Session and IConnection objects that open TCP sockets for ISO15118-20 communications without properly closing and destroying previous instances. This resource leak combined with improper pointer handling can result in a null pointer dereference, causing system crashes.

Critical Impact

Adjacent network attackers can exploit this vulnerability to cause denial of service in EV charging infrastructure without authentication, potentially disrupting electric vehicle charging operations.

Affected Products

  • EVerest everest-core versions prior to 2025.10.0
  • EV charging stations running vulnerable EVerest software stack
  • ISO15118-20 communication modules within EVerest

Discovery Timeline

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

Technical Details for CVE-2025-68136

Vulnerability Analysis

This vulnerability stems from improper allocation of resources without limits or throttling (CWE-770) in the EVerest charging software stack. The core issue manifests in the SDP request handling logic where each incoming request triggers the creation of new session objects without proper cleanup of existing resources.

When the module processes an SDP request, it instantiates new Session and IConnection objects, opening fresh TCP sockets for ISO15118-20 communications. The problematic behavior occurs because these operations happen without first closing and destroying the previous session instances. The previous Session object is not preserved, and the unique_ptr usage pattern causes premature destruction of connection data.

The vulnerability becomes exploitable when the socket file descriptor is not the last one in the sequence, leading to a null pointer dereference. This condition causes the application to crash, resulting in denial of service for the EV charging station.

Root Cause

The root cause is improper resource lifecycle management in the SDP request handler. The code creates new session objects upon each SDP request but fails to properly deallocate previous instances. The use of unique_ptr for session management results in automatic destruction of connection data when the pointer is overwritten, but the callbacks registered for file descriptors may still reference the destroyed objects. When these callbacks are invoked for non-terminal file descriptors, the null pointer dereference occurs.

Attack Vector

The vulnerability requires adjacent network access, meaning an attacker must be on the same local network segment as the vulnerable EV charging station. The attack can be executed without authentication or user interaction. An attacker can send crafted SDP requests to trigger the resource exhaustion and subsequent null pointer dereference condition.

The attack flow involves:

  1. Attacker identifies an EVerest-based charging station on the local network
  2. Attacker sends multiple SDP requests to the target
  3. Each request creates new session objects without cleanup
  4. Eventually, a null pointer dereference occurs when callbacks reference destroyed connection data
  5. The charging station service crashes, denying service to legitimate users

Detection Methods for CVE-2025-68136

Indicators of Compromise

  • Unexpected service crashes or restarts of the EVerest charging module
  • Abnormal patterns of SDP requests from single sources on the local network
  • Memory consumption anomalies in the charging station software
  • Repeated TCP connection establishment attempts to ISO15118-20 ports

Detection Strategies

  • Monitor for crash dumps or core files generated by the EVerest process indicating null pointer dereference
  • Implement network traffic analysis for unusual SDP request patterns on the charging infrastructure network
  • Deploy application-level logging to track session creation and destruction events
  • Use memory profiling tools to detect resource leaks in the charging software

Monitoring Recommendations

  • Configure logging for all SDP request handling events with timestamps and source addresses
  • Set up automated alerting for EVerest service crashes or unexpected restarts
  • Monitor system resources (memory, file descriptors) on charging station hardware
  • Implement network segmentation monitoring to detect unauthorized adjacent network access

How to Mitigate CVE-2025-68136

Immediate Actions Required

  • Upgrade EVerest everest-core to version 2025.10.0 or later immediately
  • Implement network segmentation to isolate EV charging infrastructure from untrusted networks
  • Enable rate limiting for SDP requests at the network level where possible
  • Monitor charging stations for signs of exploitation attempts

Patch Information

The vulnerability is fixed in EVerest everest-core version 2025.10.0. This update addresses the improper resource management by ensuring proper cleanup of previous session objects before creating new ones. Organizations should prioritize updating all affected charging infrastructure to the patched version.

For detailed patch information and security advisory, refer to the GitHub Security Advisory.

Workarounds

  • Implement strict network access controls to limit which devices can communicate with charging stations
  • Deploy intrusion detection systems to monitor for SDP request flooding attempts
  • Consider temporary service restrictions during high-risk periods until patching is complete
  • Enable service monitoring and automatic restart capabilities to minimize downtime from crashes

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechEverest

  • SeverityHIGH

  • CVSS Score7.4

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27828: EVerest Use-After-Free Vulnerability

  • CVE-2026-27813: EVerest Use-After-Free Vulnerability

  • CVE-2026-33014: EVerest Auth Bypass Vulnerability

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