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

CVE-2026-25591: New API SQL Injection DoS Vulnerability

CVE-2026-25591 is a SQL wildcard injection vulnerability in New API's LLM gateway that enables denial of service through resource exhaustion. This article covers technical details, affected versions, and mitigation strategies.

Published: February 27, 2026

CVE-2026-25591 Overview

CVE-2026-25591 is a SQL LIKE wildcard injection vulnerability discovered in New API, a large language model (LLM) gateway and artificial intelligence (AI) asset management system. The vulnerability exists in the /api/token/search endpoint where authenticated users can craft malicious search patterns to cause denial of service through resource exhaustion.

The token search endpoint accepts user-supplied keyword and token parameters that are directly concatenated into SQL LIKE clauses without proper escaping of wildcard characters (%, _). This allows attackers to inject patterns that trigger expensive database queries, potentially causing significant service degradation or complete unavailability.

Critical Impact

Authenticated attackers can exhaust database resources through crafted search patterns, causing denial of service for all users of the LLM gateway system.

Affected Products

  • New API versions prior to 0.10.8-alpha.10
  • LLM gateway deployments using vulnerable token search functionality
  • AI asset management systems built on New API

Discovery Timeline

  • 2026-02-24 - CVE-2026-25591 published to NVD
  • 2026-02-24 - Last updated in NVD database

Technical Details for CVE-2026-25591

Vulnerability Analysis

This vulnerability falls under CWE-943 (Improper Neutralization of Special Elements in Data Query Logic). The root issue stems from insufficient input validation in the token search functionality, where user-controlled parameters are incorporated directly into SQL LIKE clauses without sanitizing wildcard metacharacters.

When processing search requests, the application constructs database queries using the raw keyword and token parameters. SQL LIKE clauses interpret % as matching any sequence of characters and _ as matching any single character. By injecting multiple wildcards in strategic patterns (such as %a%b%c%d%e%f%g%h%i%j%), an attacker can force the database engine to perform computationally expensive pattern matching operations.

The attack requires authentication, limiting the threat surface to legitimate users or compromised accounts. However, the network-accessible nature of the endpoint and low complexity of exploitation make this a significant risk for production deployments handling AI workloads.

Root Cause

The vulnerability originates from the direct concatenation of user-supplied input into SQL LIKE patterns without escaping wildcard characters. The search functionality was designed for convenience without considering the computational implications of allowing arbitrary wildcard patterns. This is a common oversight in search implementations where developers focus on functionality rather than the potential for algorithmic complexity attacks through pattern injection.

Attack Vector

The attack is network-based and requires low privilege (authenticated user). An attacker sends specially crafted requests to the /api/token/search endpoint with wildcard-heavy patterns in the keyword or token parameters. These patterns cause the database to perform resource-intensive pattern matching, leading to:

  1. Increased CPU utilization on the database server
  2. Memory exhaustion from processing complex patterns
  3. Query queue saturation preventing legitimate requests
  4. Cascading failures affecting other system components

The patch introduces rate limiting, pagination, and input validation to mitigate the attack:

go
	DownloadRateLimitNum            = 10
	DownloadRateLimitDuration int64 = 60

+	// Per-user search rate limit (applies after authentication, keyed by user ID)
+	SearchRateLimitNum            = 10
+	SearchRateLimitDuration int64 = 60
)

var RateLimitKeyExpirationDuration = 20 * time.Minute

Source: GitHub Commit

Detection Methods for CVE-2026-25591

Indicators of Compromise

  • Abnormal spikes in database CPU or memory utilization during search operations
  • Slow or timed-out responses from the /api/token/search endpoint
  • Unusual patterns in search request logs containing multiple % or _ characters
  • Repeated search requests from the same authenticated user in rapid succession

Detection Strategies

  • Monitor API access logs for requests to /api/token/search with suspicious patterns in query parameters
  • Implement database query performance monitoring to detect long-running LIKE operations
  • Set up alerting for authentication anomalies combined with elevated search activity
  • Review web application firewall (WAF) logs for requests containing sequences of wildcard characters

Monitoring Recommendations

  • Enable slow query logging on the database server to capture resource-intensive pattern matching operations
  • Deploy application performance monitoring (APM) to track response times for the token search endpoint
  • Configure threshold-based alerts for database connection pool exhaustion
  • Implement user behavior analytics to detect anomalous search patterns from authenticated accounts

How to Mitigate CVE-2026-25591

Immediate Actions Required

  • Upgrade New API to version 0.10.8-alpha.10 or later immediately
  • Implement rate limiting on the /api/token/search endpoint if upgrading is not immediately possible
  • Review access logs for signs of exploitation attempts
  • Consider temporarily restricting access to the search functionality for non-essential users

Patch Information

The vulnerability has been addressed in New API version 0.10.8-alpha.10. The patch implements three defensive measures: per-user rate limiting for search operations (10 requests per 60 seconds), pagination to limit result set sizes, and input validation to sanitize wildcard characters. The fix is available via the GitHub Release and detailed in the GitHub Security Advisory.

Workarounds

  • Deploy a web application firewall (WAF) rule to filter requests containing excessive wildcard characters in search parameters
  • Implement application-level rate limiting on the search endpoint using a reverse proxy
  • Configure database query timeouts to prevent long-running pattern matching operations from consuming resources
  • Restrict access to the token search functionality to trusted administrative users only
bash
# Example nginx rate limiting configuration for the search endpoint
limit_req_zone $binary_remote_addr zone=search_limit:10m rate=10r/m;

location /api/token/search {
    limit_req zone=search_limit burst=5 nodelay;
    proxy_pass http://backend;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNew Api

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.04%

  • 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:X/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-943
  • Technical References
  • GitHub Commit Log

  • GitHub Release Note

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-30886: Newapi New Api 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