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

CVE-2026-25993: EverShop Second-Order SQL Injection Flaw

CVE-2026-25993 is a second-order SQL injection vulnerability in EverShop that allows malicious url_key values to modify SQL statements during category events. This article covers technical details, affected versions, and patches.

Published: February 13, 2026

CVE-2026-25993 Overview

CVE-2026-25993 is a critical second-order SQL injection vulnerability affecting EverShop, a TypeScript-first eCommerce platform. The vulnerability exists in the category update and deletion event handling mechanism, where the application embeds path and request_path values—derived from the url_key stored in the database—into SQL statements via string concatenation and passes them to execute(). This design flaw allows attackers to store malicious SQL payloads in the url_key field, which are later executed during subsequent event processing, leading to a classic second-order SQL injection attack.

Critical Impact

Attackers can achieve unauthorized database access, data exfiltration, and potentially complete database compromise by injecting malicious SQL through the url_key field during category or product operations.

Affected Products

  • EverShop versions prior to v2.1.1
  • EverShop catalog module (category and product services)
  • Applications using EverShop's URL rewrite functionality

Discovery Timeline

  • February 10, 2026 - CVE-2026-25993 published to NVD
  • February 10, 2026 - Last updated in NVD database

Technical Details for CVE-2026-25993

Vulnerability Analysis

This second-order SQL injection vulnerability represents a particularly dangerous attack pattern where malicious input is not executed immediately but stored in the database for later execution. In EverShop's case, the url_key field in the category and product data schemas originally used a permissive regex pattern (^\S+$) that only prevented whitespace characters. This allowed attackers to inject SQL metacharacters and malicious payloads into the url_key field.

When subsequent category update or deletion events occur, the application retrieves the stored url_key value, constructs SQL statements through unsafe string concatenation, and executes them via the execute() function. This deferred execution pattern makes second-order SQL injection particularly difficult to detect and prevent without proper input validation at the data entry point.

Root Cause

The root cause of CVE-2026-25993 lies in insufficient input validation combined with unsafe SQL query construction. The original validation schema for url_key fields used a regex pattern (^\S+$) that only ensured the value contained no whitespace, failing to restrict SQL metacharacters, quotes, or other injection payloads. Additionally, the application used string concatenation rather than parameterized queries when building SQL statements from the stored url_key values during event processing.

Attack Vector

The attack exploits the network-accessible interface of the EverShop platform. An attacker with the ability to create or modify categories or products can inject a malicious SQL payload into the url_key field. Since the original validation only rejected whitespace, payloads containing SQL injection syntax (such as single quotes, semicolons, and SQL commands) would pass validation and be stored in the database. When the application later processes category update or deletion events, it retrieves these malicious values and incorporates them into SQL queries, triggering the injected commands.

The following patch demonstrates the security fix implemented in the category data schema:

text
     },
     "url_key": {
       "type": "string",
-      "pattern": "^\\S+$",
+      "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
+      "minLength": 1,
+      "maxLength": 255,
       "errorMessage": {
         "type": "URL key must be a string",
-        "pattern": "URL key cannot contain spaces"
+        "pattern": "URL key must contain only lowercase letters, numbers, and hyphens (e.g., 'my-category-name')",
+        "minLength": "URL key cannot be empty",
+        "maxLength": "URL key cannot exceed 255 characters"
       }
     },
     "status": {

Source: GitHub Commit

The same fix was applied to the product data schema:

text
     },
     "url_key": {
       "type": "string",
-      "pattern": "^\\S+$",
+      "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
+      "minLength": 1,
+      "maxLength": 255,
       "errorMessage": {
         "type": "URL key must be a string",
-        "pattern": "URL key cannot contain spaces"
+        "pattern": "URL key must contain only lowercase letters, numbers, and hyphens (e.g., 'my-product-name')",
+        "minLength": "URL key cannot be empty",
+        "maxLength": "URL key cannot exceed 255 characters"
       }
     },
     "meta_title": {

Source: GitHub Commit

Detection Methods for CVE-2026-25993

Indicators of Compromise

  • Database entries in category or product tables containing url_key values with SQL metacharacters (single quotes, semicolons, comment sequences like -- or /*)
  • Application logs showing SQL syntax errors during category or product update/deletion operations
  • Unexpected database modifications or data exfiltration following category management operations
  • Anomalous patterns in url_key fields that deviate from standard URL slug formatting

Detection Strategies

  • Implement database field auditing to detect url_key values containing non-alphanumeric characters (excluding hyphens)
  • Deploy Web Application Firewall (WAF) rules to detect SQL injection patterns in category and product creation/update requests
  • Enable database query logging and monitor for anomalous queries originating from the URL rewrite functionality
  • Conduct regular database integrity checks to identify potentially malicious stored values

Monitoring Recommendations

  • Configure alerts for database errors related to malformed SQL queries in the catalog module
  • Monitor API endpoints handling category and product CRUD operations for injection attempt patterns
  • Implement real-time log analysis to correlate category management events with unexpected database activity
  • Track user sessions that interact with product/category management for suspicious behavior patterns

How to Mitigate CVE-2026-25993

Immediate Actions Required

  • Upgrade EverShop to version v2.1.1 or later immediately
  • Audit existing database records in category and product tables for malicious url_key values
  • Review application logs for evidence of exploitation attempts
  • Implement additional input validation at the application layer as defense-in-depth

Patch Information

EverShop has released version v2.1.1 which addresses this vulnerability by implementing strict input validation on the url_key field. The fix replaces the permissive regex pattern with a restrictive pattern (^[a-z0-9]+(?:-[a-z0-9]+)*$) that only allows lowercase letters, numbers, and hyphens. Additional constraints include minimum length of 1 character and maximum length of 255 characters.

For detailed information, refer to the GitHub Security Advisory GHSA-3h84-9rhc-j2ch and the security patch commit.

Workarounds

  • If immediate patching is not possible, implement a reverse proxy or WAF rule to reject requests containing SQL injection patterns in url_key fields
  • Add database-level constraints or triggers to validate url_key values before storage
  • Manually audit and sanitize existing url_key values in the database to remove any potentially malicious content
  • Restrict access to category and product management functionality to trusted administrators only
bash
# Database audit query to identify potentially malicious url_key values
# Run this against your EverShop database to detect suspicious entries

SELECT id, url_key FROM category WHERE url_key REGEXP '[^a-z0-9-]';
SELECT id, url_key FROM product WHERE url_key REGEXP '[^a-z0-9-]';

# If suspicious entries are found, sanitize or remove them before upgrading

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechEvershop

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-3h84-9rhc-j2ch
  • Related CVEs
  • CVE-2026-28213: EverShop Auth Bypass Vulnerability

  • CVE-2025-67427: Evershop Blind SSRF Vulnerability

  • CVE-2025-67419: Evershop SVG 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