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

CVE-2025-68137: EVerest Buffer Overflow Vulnerability

CVE-2025-68137 is a buffer overflow vulnerability in EVerest EV charging software caused by an integer overflow in SdpPacket::parse_header(). This post covers the technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2025-68137 Overview

CVE-2025-68137 is an integer overflow vulnerability in EVerest, an open-source EV charging software stack. The flaw exists in the SdpPacket::parse_header() function where an integer overflow allows the current buffer length to be incorrectly set to 7 after a complete header of size 8 has been read. When calculating the remaining length to read by subtracting the header length from the current length, this results in a negative value. Since the expected argument type is size_t, this negative value is interpreted as SIZE_MAX (or slightly less), leading to catastrophic memory corruption scenarios.

Critical Impact

Depending on whether the server uses plain TCP or TLS, exploitation can result in either an infinite loop causing denial of service or a stack buffer overflow potentially enabling remote code execution from adjacent network positions.

Affected Products

  • EVerest everest-core versions prior to 2025.10.0

Discovery Timeline

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

Technical Details for CVE-2025-68137

Vulnerability Analysis

This vulnerability is classified as CWE-120 (Buffer Copy without Checking Size of Input), commonly known as a classic buffer overflow. The root issue is an integer overflow that occurs during header parsing in the Session Descriptor Protocol (SDP) packet handler. The vulnerability is exploitable from an adjacent network position, meaning an attacker must be on the same local network segment as the vulnerable EV charging station.

The attack does not require authentication or user interaction, making it particularly dangerous in shared network environments such as parking garages, commercial charging stations, or fleet management facilities. The scope is changed, indicating the vulnerability can affect resources beyond the vulnerable component's security boundary.

Root Cause

The root cause lies in the SdpPacket::parse_header() function where improper integer handling occurs. After reading a complete 8-byte header, the buffer length tracking variable is erroneously set to 7. When the code subsequently calculates the remaining data to read using subtraction (current_length - header_length), the result is -1. However, since this value is cast to or expected as size_t (an unsigned type), the negative value wraps around to SIZE_MAX, which is the maximum value representable by size_t (typically 18,446,744,073,709,551,615 on 64-bit systems).

Attack Vector

The attack vector is adjacent network-based, requiring the attacker to be on the same network segment as the vulnerable EVerest installation. The exploitation path differs based on the transport layer:

Plain TCP Mode: The massive SIZE_MAX value causes the read loop to attempt reading an impossibly large amount of data, resulting in an infinite loop that consumes CPU resources and renders the charging station unresponsive.

TLS Mode: The same integer overflow triggers a stack buffer overflow condition. The code attempts to write data beyond allocated stack buffer boundaries, potentially allowing an attacker to overwrite return addresses and gain control of program execution flow.

The vulnerability requires no authentication and can be triggered by sending specially crafted SDP packets to the charging station's network interface. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2025-68137

Indicators of Compromise

  • Unexpected high CPU utilization on EV charging station controllers that may indicate an infinite loop condition
  • Network traffic anomalies showing malformed or oversized SDP packets directed at charging infrastructure
  • System crashes or unexpected restarts of the EVerest service, particularly when TLS is enabled
  • Stack traces or core dumps indicating buffer overflow conditions in SDP packet handling functions

Detection Strategies

  • Deploy network intrusion detection systems (IDS) with rules to identify malformed SDP packets targeting EV charging infrastructure
  • Monitor EVerest service logs for parsing errors, unexpected disconnections, or memory-related crashes
  • Implement anomaly detection for adjacent network traffic patterns targeting charging station ports
  • Use SentinelOne Singularity platform to detect exploitation attempts through behavioral analysis of buffer overflow conditions

Monitoring Recommendations

  • Enable verbose logging for the EVerest SDP packet processing module to capture parsing anomalies
  • Configure alerting for EVerest service availability to detect denial of service conditions promptly
  • Monitor memory usage patterns on charging station controllers for signs of buffer overflow attempts
  • Implement network segmentation monitoring to detect unauthorized adjacent network access to charging infrastructure

How to Mitigate CVE-2025-68137

Immediate Actions Required

  • Update EVerest everest-core to version 2025.10.0 or later immediately
  • Isolate EV charging infrastructure on dedicated network segments with strict access controls
  • Implement network access control lists (ACLs) to restrict adjacent network access to authorized devices only
  • Enable enhanced logging and monitoring on charging stations until patches can be applied

Patch Information

The EVerest project has addressed this vulnerability in version 2025.10.0. Organizations should update to this version or later to remediate the integer overflow condition in SdpPacket::parse_header(). The fix ensures proper bounds checking and type handling to prevent the negative value interpretation as SIZE_MAX. For patch details, consult the GitHub Security Advisory.

Workarounds

  • Place EV charging stations behind a firewall that restricts adjacent network access to only trusted management systems
  • Implement 802.1X network authentication to prevent unauthorized devices from gaining adjacent network access to charging infrastructure
  • Use VLANs to segment charging station networks from general user networks
  • If TLS mode is in use, consider temporarily switching to plain TCP behind a secure network perimeter to convert potential code execution to DoS (less severe) while awaiting patches
bash
# Network segmentation example using firewall rules
# Restrict access to EVerest charging stations (example port 15118)
iptables -A INPUT -p tcp --dport 15118 -s 192.168.100.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 15118 -j DROP

# Enable logging for dropped connection attempts
iptables -A INPUT -p tcp --dport 15118 -j LOG --log-prefix "EVerest-blocked: "

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechEverest

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-120
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27816: EVerest Buffer Overflow Vulnerability

  • CVE-2026-27815: EVerest Buffer Overflow Vulnerability

  • CVE-2026-23995: EVerest Buffer Overflow Vulnerability

  • CVE-2026-22593: EVerest Buffer Overflow Vulnerability
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