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

CVE-2026-25597: PrestaShop Auth Bypass Vulnerability

CVE-2026-25597 is a time-based user enumeration flaw in PrestaShop that enables attackers to identify valid customer accounts by analyzing response times. This article covers technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-25597 Overview

CVE-2026-25597 is a time-based user enumeration vulnerability affecting PrestaShop, a popular open source e-commerce web application. This vulnerability exists in the user authentication functionality and allows attackers to determine whether a customer account exists in the system by measuring response times during authentication attempts.

Time-based enumeration attacks exploit differences in server processing time when validating existing versus non-existing user accounts. By analyzing these timing discrepancies, attackers can build a list of valid user accounts for subsequent attacks such as credential stuffing, targeted phishing, or brute-force password attacks.

Critical Impact

Attackers can enumerate valid customer accounts in PrestaShop installations, enabling targeted attacks against confirmed users and potentially compromising customer data privacy.

Affected Products

  • PrestaShop versions prior to 8.2.4
  • PrestaShop versions prior to 9.0.3

Discovery Timeline

  • 2026-02-06 - CVE CVE-2026-25597 published to NVD
  • 2026-02-06 - Last updated in NVD database

Technical Details for CVE-2026-25597

Vulnerability Analysis

This vulnerability is classified under CWE-208 (Observable Timing Discrepancy), which occurs when two separate code paths in an application take different amounts of time to execute. In the context of PrestaShop's authentication system, the application exhibits measurably different response times when processing login requests for existing accounts versus non-existing accounts.

The timing discrepancy likely stems from additional database queries or cryptographic operations that only occur when validating credentials for a confirmed account. When an attacker submits authentication requests and carefully measures the response times, they can infer which accounts exist in the system without needing valid credentials.

This vulnerability is remotely exploitable over the network and requires no authentication or user interaction. While it does not directly compromise confidentiality of account credentials, it exposes information about which email addresses or usernames are registered in the system.

Root Cause

The root cause of this vulnerability lies in the authentication flow's failure to implement constant-time comparisons and response handling. When the authentication system checks for account existence before performing password validation, it creates a measurable timing difference between:

  1. Requests for non-existent accounts (quick rejection)
  2. Requests for existing accounts (additional password hashing and comparison operations)

Properly secured authentication systems should perform the same computational operations regardless of whether the account exists, ensuring response times remain consistent and do not leak information about account validity.

Attack Vector

The attack vector is network-based, allowing remote attackers to target any publicly accessible PrestaShop installation. The attack methodology involves:

  1. Compiling a list of potential email addresses or usernames (from data breaches, OSINT, or generated lists)
  2. Submitting authentication requests for each potential account
  3. Measuring the server response time for each request with high precision
  4. Analyzing the timing data to identify statistical outliers indicating valid accounts
  5. Building a confirmed list of valid accounts for further exploitation

Automated tools can rapidly enumerate thousands of potential accounts, making this attack highly scalable against e-commerce platforms that may have large customer databases.

Detection Methods for CVE-2026-25597

Indicators of Compromise

  • Abnormally high volume of failed authentication attempts from single or distributed IP addresses
  • Systematic login attempts using alphabetical or sequential email address patterns
  • Authentication requests with unusual precision timing patterns in access logs
  • Automated request patterns with consistent intervals between login attempts

Detection Strategies

  • Implement rate limiting detection on authentication endpoints to identify enumeration attempts
  • Deploy web application firewall (WAF) rules to detect and block rapid sequential login attempts
  • Monitor authentication logs for patterns indicative of automated enumeration tools
  • Configure SentinelOne Singularity to detect suspicious authentication traffic patterns on web servers

Monitoring Recommendations

  • Enable detailed access logging on PrestaShop authentication endpoints with timestamp precision
  • Set up alerting for authentication failure rates exceeding baseline thresholds
  • Monitor for distributed enumeration attempts originating from multiple IP addresses
  • Implement real-time correlation of authentication events across your e-commerce infrastructure

How to Mitigate CVE-2026-25597

Immediate Actions Required

  • Upgrade PrestaShop to version 8.2.4 or 9.0.3 immediately depending on your branch
  • Implement rate limiting on authentication endpoints as a defense-in-depth measure
  • Review authentication logs for evidence of prior enumeration attempts
  • Enable CAPTCHA or progressive delays on login forms to slow automated attacks

Patch Information

PrestaShop has released security patches addressing this vulnerability in versions 8.2.4 and 9.0.3. Organizations should upgrade to the appropriate patched version based on their deployment:

  • For PrestaShop 8.x installations: Upgrade to version 8.2.4
  • For PrestaShop 9.x installations: Upgrade to version 9.0.3

Additional technical details are available in the GitHub Security Advisory GHSA-67v7-3g49-mxh2.

Workarounds

  • Implement a reverse proxy or WAF with aggressive rate limiting on login endpoints
  • Add artificial random delays to authentication responses to mask timing differences
  • Deploy CAPTCHA challenges after a low threshold of failed authentication attempts
  • Consider implementing account lockout policies to limit enumeration effectiveness

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechPrestashop

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-208
  • Technical References
  • GitHub PrestaShop Release 8.2.4

  • GitHub PrestaShop Release 9.0.3

  • GitHub Security Advisory GHSA-67v7-3g49-mxh2
  • Related CVEs
  • CVE-2025-61922: PrestaShop Checkout Auth Bypass Vulnerability

  • CVE-2020-4074: PrestaShop Auth Bypass Vulnerability

  • CVE-2026-33674: PrestaShop Validation Framework Flaw

  • CVE-2026-33673: PrestaShop Stored XSS Vulnerability
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