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

CVE-2026-23959: CoreShop SQL Injection Vulnerability

CVE-2026-23959 is an error-based SQL injection flaw in CoreShop's admin panel that allows attackers to extract sensitive database information. This article covers the technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-23959 Overview

CoreShop, a Pimcore enhanced eCommerce solution, contains an error-based SQL Injection vulnerability in the CustomerTransformerController within the CoreShop admin panel. The affected endpoint improperly interpolates user-supplied input into a SQL query without proper parameterization, leading to database error disclosure and potential data extraction. This vulnerability affects all CoreShop versions prior to 4.1.9.

Critical Impact

Authenticated attackers with administrative privileges can exploit this SQL Injection vulnerability to extract sensitive data from the underlying database, potentially exposing customer information, order details, and other confidential eCommerce data.

Affected Products

  • CoreShop versions prior to 4.1.9
  • Pimcore installations using vulnerable CoreShop eCommerce bundle
  • CoreShop admin panel with CustomerTransformerController endpoint

Discovery Timeline

  • 2026-01-22 - CVE-2026-23959 published to NVD
  • 2026-01-22 - Last updated in NVD database

Technical Details for CVE-2026-23959

Vulnerability Analysis

This SQL Injection vulnerability (CWE-564) exists in the CustomerTransformerController.php file within CoreShop's admin panel. The vulnerability stems from improper handling of user-supplied input when constructing database queries for company lookups. The application directly interpolates the user-provided $value variable into a SQL LIKE clause using string formatting, rather than utilizing parameterized queries or prepared statements.

The attack requires network access and high privileges (administrative access to the CoreShop admin panel). While exploitation requires authenticated access, a successful attack can result in high confidentiality impact through database information disclosure, including potential extraction of sensitive customer and transaction data.

Root Cause

The root cause is the use of direct string interpolation with sprintf() to construct SQL queries in the CustomerTransformerController. The vulnerable code constructs a LIKE condition by embedding user input directly into the SQL string using sprintf('name LIKE \"%%%s%%\"', (string) $value). This pattern bypasses any database-level escaping and allows an attacker to manipulate the SQL query structure through specially crafted input values.

Attack Vector

The attack vector is network-based, targeting the CoreShop admin panel endpoint handling company lookups. An authenticated administrator can supply malicious input through the affected parameter, which gets directly concatenated into the SQL query. By injecting SQL metacharacters and syntax, attackers can trigger database errors that reveal schema information, or use techniques like UNION-based or boolean-based blind SQL injection to extract data from the database.

php
// Vulnerable code pattern (before patch)
$list->addConditionParam(sprintf('name LIKE "%%%s%%"', (string) $value));

// Fixed code pattern (after patch) - uses parameterized query
$list->addConditionParam('name LIKE ?', '%' . $value . '%');

Source: GitHub Commit Update

Detection Methods for CVE-2026-23959

Indicators of Compromise

  • Unusual or malformed requests to the CoreShop admin panel customer transformer endpoints containing SQL metacharacters such as single quotes, double quotes, or comment sequences
  • Database error messages appearing in application logs or HTTP responses related to company name lookups
  • Anomalous patterns in database query logs showing modified LIKE clauses or injected SQL syntax
  • Unexpected database access patterns or queries returning abnormally large result sets

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block common SQL injection payloads in requests to the CoreShop admin panel
  • Monitor application logs for database error messages that may indicate SQL injection attempts
  • Enable database query auditing to identify unusual query patterns targeting the company lookup functionality
  • Review access logs for repeated requests to the CustomerTransformerController endpoint with varying payloads

Monitoring Recommendations

  • Enable detailed logging on the CoreShop admin panel and database server to capture potential exploitation attempts
  • Configure alerting for HTTP 500 errors or database exceptions originating from the customer transformer controller
  • Implement rate limiting on admin panel endpoints to slow down automated exploitation attempts
  • Monitor for any unauthorized data access patterns in database audit logs

How to Mitigate CVE-2026-23959

Immediate Actions Required

  • Upgrade CoreShop to version 4.1.9 or later immediately to remediate the SQL Injection vulnerability
  • Review database access logs for any signs of prior exploitation attempts
  • Audit administrative user accounts for unauthorized access and rotate credentials as a precaution
  • Implement network-level restrictions to limit admin panel access to trusted IP addresses

Patch Information

CoreShop version 4.1.9 addresses this vulnerability by replacing the vulnerable string interpolation with parameterized query binding. The fix modifies the addConditionParam() call to use placeholder syntax with the value passed as a separate parameter, ensuring proper escaping by the database layer. Organizations should update to version 4.1.9 or later. For detailed information, refer to the GitHub Security Advisory GHSA-fqcv-8859-86x2 and the CoreShop 4.1.9 Release.

Workarounds

  • Restrict admin panel access to trusted networks using firewall rules or VPN requirements until patching is complete
  • Implement a reverse proxy or WAF with SQL injection detection capabilities in front of the CoreShop application
  • Disable or restrict access to the customer transformer functionality if not business-critical
  • Monitor and alert on any requests containing SQL injection patterns targeting admin endpoints
bash
# Example: Restrict admin panel access via nginx
location /admin {
    # Allow only trusted IP ranges
    allow 10.0.0.0/8;
    allow 192.168.1.0/24;
    deny all;
    
    # Additional security headers
    add_header X-Content-Type-Options nosniff;
    add_header X-Frame-Options DENY;
}

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechCoreshop

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.01%

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

  • GitHub Release 4.1.9

  • GitHub Security Advisory GHSA-fqcv-8859-86x2
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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