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-2023-25330

CVE-2023-25330: MyBatis Plus SQL Injection Vulnerability

CVE-2023-25330 is a SQL injection flaw in MyBatis Plus that allows attackers to execute arbitrary SQL commands via tenant ID values. This article covers technical details, affected versions, impact, and mitigation.

Updated: May 15, 2026

CVE-2023-25330 Overview

CVE-2023-25330 is a SQL injection vulnerability in MyBatis-Plus versions below 3.5.3.1. The flaw resides in the tenant ID valuer used by the multi-tenant plugin. Remote attackers can execute arbitrary SQL commands by supplying a crafted tenant ID value that is concatenated directly into SQL statements [CWE-89].

The vendor (Baomidou) states the issue can only occur in misconfigured applications and provides documentation on developing applications that avoid SQL injection. A public proof-of-concept demonstrating the tenant plugin injection path is available on GitHub.

Critical Impact

Unauthenticated remote attackers can read, modify, or destroy database contents by injecting SQL through the tenant ID valuer in vulnerable MyBatis-Plus deployments.

Affected Products

  • MyBatis-Plus versions prior to 3.5.3.1
  • Java applications using the MyBatis-Plus multi-tenant plugin (TenantLineInnerInterceptor)
  • Spring Boot applications relying on user-controlled tenant ID resolution

Discovery Timeline

  • 2023-04-05 - CVE-2023-25330 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-25330

Vulnerability Analysis

MyBatis-Plus is an enhancement library for the MyBatis Java persistence framework. It provides a multi-tenant plugin that rewrites SQL queries to append a tenant filter clause, typically in the form tenant_id = <value>. The tenant value is produced by a TenantLineHandler implementation that resolves the current tenant ID at runtime.

The vulnerability arises because the tenant ID returned by the valuer is inserted into the rewritten SQL as a literal expression rather than as a bound parameter. When an application sources the tenant ID from an HTTP header, cookie, or other client-controlled input without validation, an attacker can submit a payload that breaks out of the expected expression and appends arbitrary SQL.

This grants the attacker the privileges of the database account used by the application, including data exfiltration, modification, and in some configurations, command execution through database-specific features.

Root Cause

The root cause is unsafe string interpolation of the tenant identifier into generated SQL. The plugin trusts the value returned by getTenantId() and inserts it directly into the WHERE clause. Combined with applications that obtain the tenant ID from request headers without sanitization, this produces a classic injection sink. The vendor position is that callers must validate the value before returning it from TenantLineHandler.getTenantId().

Attack Vector

The attack is performed over the network with no authentication or user interaction. An attacker sends an HTTP request containing a malicious tenant identifier (for example, in a tenant-id header). The vulnerable application invokes the tenant handler, which returns the attacker-controlled string. The plugin then rewrites a benign query into one that contains injected SQL, which the database executes.

The vulnerability mechanism is described in detail in the GitHub MybatisPlus SQL Injection PoC and the Baomidou CVE Reference. No verified exploit code is reproduced here.

Detection Methods for CVE-2023-25330

Indicators of Compromise

  • HTTP requests containing SQL metacharacters (single quotes, UNION, SELECT, comment sequences -- or /*) in tenant-related headers or parameters.
  • Database query logs showing rewritten WHERE clauses with unexpected operators or subqueries adjacent to tenant_id.
  • Anomalous outbound queries from the application database account, particularly against system catalogs such as information_schema.
  • Application error logs referencing TenantLineInnerInterceptor with malformed SQL exceptions.

Detection Strategies

  • Enable database query logging and alert on queries containing tenant_id followed by patterns inconsistent with a numeric or short alphanumeric literal.
  • Deploy a web application firewall rule that inspects tenant headers and parameters for SQL injection signatures.
  • Add application-level logging inside the TenantLineHandler implementation to record every resolved tenant ID and its source.

Monitoring Recommendations

  • Monitor for spikes in database errors originating from the application service account.
  • Track unusual data volume reads against tables protected by the tenant plugin.
  • Correlate authentication anomalies with tenant header values that do not match the authenticated user's tenant.

How to Mitigate CVE-2023-25330

Immediate Actions Required

  • Upgrade MyBatis-Plus to version 3.5.3.1 or later across all application services.
  • Audit every TenantLineHandler implementation and reject tenant IDs that are not strictly numeric or do not match an allowlist.
  • Restrict the database account used by the application to least privilege and revoke access to system catalogs where feasible.
  • Review web server and application logs for prior requests containing suspicious tenant header values.

Patch Information

Upgrade the mybatis-plus-core and related artifacts to 3.5.3.1 or higher. Refer to the Baomidou CVE Reference for the vendor's guidance on secure tenant handler implementation, including input validation patterns the framework expects callers to apply.

Workarounds

  • Validate tenant IDs against a strict regular expression such as ^[0-9]+$ before returning them from getTenantId().
  • Resolve tenant IDs from server-side session state or authenticated JWT claims rather than from client-supplied headers.
  • Deploy WAF rules that block tenant headers containing SQL keywords, quotes, or comment markers.
bash
# Maven dependency upgrade example
# Update pom.xml to use the patched version
mvn versions:use-dep-version \
  -Dincludes=com.baomidou:mybatis-plus-boot-starter \
  -DdepVersion=3.5.3.1 \
  -DforceVersion=true

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechMybatis

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.90%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • Baomidou CVE Reference

  • GitHub MybatisPlus SQL Injection PoC
  • Related CVEs
  • CVE-2020-26945: MyBatis Deserialization 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