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
    • 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-68133

CVE-2025-68133: EVerest EV Charging Stack DoS Vulnerability

CVE-2025-68133 is a denial of service vulnerability in EVerest EV charging software that allows attackers to exhaust memory through unlimited TCP connections. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2025-68133 Overview

CVE-2025-68133 is a resource exhaustion vulnerability in EVerest, an open-source EV charging software stack. In versions 2025.9.0 and below, an attacker can exhaust the operating system's memory and cause the module to terminate by initiating an unlimited number of TCP connections that never proceed to ISO 15118-2 communication. This is possible because a new thread is started for each incoming plain TCP or TLS socket connection before any verification occurs, and the verification performed is too permissive. The vulnerability affects the EvseV2G module responsible for handling vehicle-to-grid communication.

Critical Impact

Successful exploitation allows an adjacent network attacker to cause a complete denial of service on EV charging stations, shutting down the EVerest processes and all EVSE functionality without requiring authentication or user interaction.

Affected Products

  • EVerest everest-core versions 2025.9.0 and below
  • EvseV2G module (TCP/TLS connection handling)
  • EV charging stations running vulnerable EVerest software stack

Discovery Timeline

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

Technical Details for CVE-2025-68133

Vulnerability Analysis

This vulnerability exists in the connection handling logic of the EvseV2G module within EVerest. The core issue stems from improper resource allocation controls when processing incoming network connections. When a TCP or TLS connection is received, the software spawns a new thread to handle each connection before performing adequate verification. An attacker on the adjacent network can exploit this by establishing numerous connections that are accepted but never complete the ISO 15118-2 handshake, causing unbounded thread creation and memory exhaustion.

The vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling), which accurately describes the failure to implement connection limits or resource caps. The attack can be executed from an adjacent network position without any privileges or user interaction, and when successful, affects the entire charging infrastructure beyond just the vulnerable component.

Root Cause

The root cause is the absence of connection state tracking before thread allocation. The connection.cpp and tls_connection.cpp files in the EvseV2G module would accept and process any incoming TCP or TLS connection by immediately spawning a handler thread. There was no mechanism to check whether an active connection already existed or to limit concurrent connection attempts. The connection_initiated flag that now tracks connection state was not implemented in vulnerable versions, allowing attackers to flood the system with connection requests.

Attack Vector

An attacker positioned on the same local network segment as the EV charging station can exploit this vulnerability by:

  1. Establishing multiple TCP or TLS connections to the EvseV2G module
  2. Keeping connections open without completing ISO 15118-2 protocol negotiation
  3. Repeating this process to spawn unlimited threads, each consuming system memory
  4. Exhausting available memory until the EVerest process terminates
  5. Causing denial of service to all EVSE functionality on the affected charging station

The attack requires adjacent network access but no authentication or privileges, making it relatively straightforward to execute in shared charging environments.

cpp
// Security patch in tls_connection.cpp - Connection state tracking added
// Source: https://github.com/EVerest/everest-core/commit/8127b8c54b296c4dd01b356ac26763f81f76a8fd

void handle_new_connection_cb(tls::Server::ConnectionPtr&& con, struct v2g_context* ctx) {
    assert(con != nullptr);
    assert(ctx != nullptr);
    if (ctx->connection_initiated) {
        dlog(DLOG_LEVEL_ERROR, "Incoming TLS connection on %s, but there is already an active connection.",
             ctx->if_name);
        return;
    }
    ctx->connection_initiated = true;
    // create a thread to process this connection
    try {
        // passing unique pointers through thread parameters is problematic
cpp
// Security patch in connection.cpp - Reset connection state on teardown
// Source: https://github.com/EVerest/everest-core/commit/8127b8c54b296c4dd01b356ac26763f81f76a8fd

    }
    dlog(DLOG_LEVEL_INFO, "TCP connection closed gracefully");

    conn->ctx->connection_initiated = false;

    if (rv != ERROR_SESSION_ALREADY_STARTED) {
        /* cleanup and notify lower layers */
        connection_teardown(conn);

Detection Methods for CVE-2025-68133

Indicators of Compromise

  • Unusual spike in TCP/TLS connection attempts to EV charging station endpoints
  • Rapid memory consumption on systems running EVerest EvseV2G module
  • Multiple incomplete ISO 15118-2 sessions from single or multiple source addresses
  • EVerest process crashes or unexpected terminations with memory exhaustion errors
  • High thread count in EVerest processes without corresponding charging sessions

Detection Strategies

  • Monitor network traffic for abnormal connection patterns to charging station communication ports
  • Implement connection rate limiting and alerting at the network perimeter for EVSE networks
  • Track memory and thread utilization metrics on systems running EVerest software
  • Configure process monitoring to alert on EVerest service terminations or restarts
  • Deploy network intrusion detection rules for TCP connection flooding patterns

Monitoring Recommendations

  • Establish baseline connection rates for normal charging operations and alert on deviations
  • Monitor system logs for pthread_create() failures or memory allocation errors in EvseV2G
  • Implement real-time alerting for EVerest process crashes or service unavailability
  • Track network connection states for incomplete ISO 15118-2 handshakes
  • Review adjacent network access controls and segmentation for charging infrastructure

How to Mitigate CVE-2025-68133

Immediate Actions Required

  • Upgrade EVerest to version 2025.10.0 or later immediately
  • Implement network segmentation to restrict adjacent network access to charging stations
  • Apply temporary connection rate limiting at the network level if immediate patching is not possible
  • Monitor charging station availability and implement automated restart procedures
  • Review and restrict physical network access to charging infrastructure

Patch Information

The vulnerability is fixed in EVerest version 2025.10.0. The fix introduces a connection_initiated flag that tracks whether an active connection exists before accepting new connections. When a connection is already active, new connection attempts are rejected with an error log. The flag is properly reset when connections close gracefully or when threads fail to start. Detailed patch commits are available in the EVerest Security Advisory.

Workarounds

  • Implement network-level connection rate limiting for TCP connections to EVSE endpoints
  • Deploy firewall rules to restrict access to charging stations from untrusted network segments
  • Use VLANs or network segmentation to isolate charging infrastructure from general network access
  • Consider implementing application-level connection limits if modifying EVerest configuration is possible
  • Enable process watchdog mechanisms to automatically restart EVerest services upon crashes
bash
# Network-level mitigation using iptables to limit connection rate
# Adjust interface and rate limits based on your environment

# Limit new TCP connections per source IP to EVSE ports
iptables -A INPUT -p tcp --dport 15118 -m conntrack --ctstate NEW -m recent --set
iptables -A INPUT -p tcp --dport 15118 -m conntrack --ctstate NEW -m recent --update --seconds 60 --hitcount 10 -j DROP

# Monitor connection states
netstat -an | grep :15118 | wc -l

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

  • Vulnerability Details
  • TypeDOS

  • 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 Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-26008: EVerest DoS Vulnerability

  • CVE-2025-68141: EVerest EV Charging Stack DoS Vulnerability

  • CVE-2025-68139: EVerest EV Charging Stack DoS Vulnerability

  • CVE-2025-68135: EVerest EV Charging DoS 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