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-2026-28230

CVE-2026-28230: SteVe Auth Bypass Vulnerability

CVE-2026-28230 is an authentication bypass vulnerability in SteVe EV charging station management system that allows attackers to terminate any charger session. This post explains its impact, affected versions, and mitigation steps.

Published: February 27, 2026

CVE-2026-28230 Overview

CVE-2026-28230 is an authorization bypass vulnerability in SteVe, an open-source EV charging station management system. In versions up to and including 3.11.0, the application fails to properly verify charger ownership when processing StopTransaction messages. When a charger sends a StopTransaction message, SteVe looks up the transaction solely by transactionId (a sequential integer starting from 1) without verifying that the requesting charger matches the charger that originally started the transaction. This allows any authenticated charger to terminate any other charger's active session across the entire network.

Critical Impact

Any authenticated charger can enumerate sequential transaction IDs and send StopTransaction messages targeting active sessions on every other charger in the network. When combined with unauthenticated SOAP endpoints (FINDING-014), the attack becomes executable without any registered charger, requiring only a known chargeBoxId.

Affected Products

  • SteVe EV Charging Station Management System versions up to and including 3.11.0

Discovery Timeline

  • 2026-02-26 - CVE CVE-2026-28230 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-28230

Vulnerability Analysis

This vulnerability represents a classic Broken Access Control issue (CWE-284). The flaw exists in the transaction lookup mechanism where ownership verification is completely absent. The OcppServerRepositoryImpl.getTransaction() method queries transactions using only the transactionId parameter without performing any chargeBoxId ownership check. While the validator checks that the transaction exists and is not already stopped, it never verifies the identity of the requesting charger against the charger that initiated the transaction.

The sequential nature of transaction IDs (starting from 1) makes enumeration trivial, allowing an attacker to systematically target all active charging sessions across the network. This network-accessible vulnerability requires low attack complexity and can be exploited with minimal privileges, resulting in a high impact to availability as legitimate charging sessions can be arbitrarily terminated.

Root Cause

The root cause is located in OcppServerRepositoryImpl.getTransaction(), which queries the database only by transactionId without including a chargeBoxId ownership check. The validation logic verifies transaction existence and state but fails to implement identity verification, allowing any charger to act on any transaction.

Attack Vector

An attacker controlling a single registered charger can enumerate sequential transaction IDs and send StopTransaction messages targeting active sessions on every other charger on the network simultaneously. The attack is particularly dangerous when combined with unauthenticated SOAP endpoints, as no registered charger is required—the attack becomes executable with a single curl command requiring only a known chargeBoxId.

The fix adds chargeBoxIdentity validation to the getTransaction() call, ensuring that only the charger that initiated a transaction can terminate it:

java
// Before (vulnerable):
var transaction = ocppServerRepository.getTransaction(params.getTransactionId());

// After (patched):
var transaction = ocppServerRepository.getTransaction(chargeBoxIdentity, transactionId);

Source: GitHub Commit

Detection Methods for CVE-2026-28230

Indicators of Compromise

  • Multiple StopTransaction messages originating from a single charger targeting different transaction IDs
  • Sequential transaction ID enumeration patterns in OCPP protocol logs
  • Unusual spikes in StopTransaction requests that don't correlate with normal charging session endings
  • StopTransaction requests where the originating chargeBoxId differs from the session's initiating charger

Detection Strategies

  • Monitor OCPP server logs for StopTransaction messages where the requesting charger doesn't match the transaction owner
  • Implement anomaly detection for sequential transaction ID queries from a single source
  • Alert on bulk StopTransaction requests within short time windows
  • Review SOAP endpoint access logs for unauthenticated requests targeting transaction operations

Monitoring Recommendations

  • Enable verbose logging on the SteVe OCPP server to capture all StopTransaction requests with full context
  • Deploy network monitoring to detect unusual patterns of OCPP messaging between chargers and the central system
  • Implement real-time alerting for transaction terminations that fail ownership validation after patching
  • Monitor for exploitation attempts by correlating charger IDs across StartTransaction and StopTransaction events

How to Mitigate CVE-2026-28230

Immediate Actions Required

  • Upgrade SteVe to a version containing commit 7f169c6c5b36a9c458ec41ce8af581972e5c724e or later
  • Review and restrict access to SOAP endpoints to prevent unauthenticated exploitation
  • Audit logs for any evidence of transaction ID enumeration or unauthorized session terminations
  • Implement network segmentation to limit charger-to-charger communication paths

Patch Information

The vulnerability has been fixed in commit 7f169c6c5b36a9c458ec41ce8af581972e5c724e. The patch modifies CentralSystemService16_Service.java and OcppServerRepository.java to include chargeBoxIdentity validation when retrieving transactions. For detailed patch information, see the GitHub Security Advisory GHSA-6x38-4w7h-cwr8.

Workarounds

  • Implement network-level access controls to restrict which chargers can communicate with the SteVe central system
  • Deploy a Web Application Firewall (WAF) to detect and block sequential transaction ID enumeration attempts
  • Enable authentication on SOAP endpoints if not already configured to prevent unauthenticated exploitation
  • Consider implementing rate limiting on StopTransaction requests as a temporary defensive measure
bash
# Example: Restrict SOAP endpoint access at the network level
# Add firewall rules to limit access to known charger IPs only
iptables -A INPUT -p tcp --dport 8180 -s <charger_network_cidr> -j ACCEPT
iptables -A INPUT -p tcp --dport 8180 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechSteve

  • SeverityHIGH

  • CVSS Score7.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-6x38-4w7h-cwr8
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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