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-2025-14294

CVE-2025-14294: Razorpay WooCommerce Auth Bypass Flaw

CVE-2025-14294 is an authentication bypass flaw in Razorpay for WooCommerce plugin that lets unauthenticated attackers modify order billing and shipping details. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2025-14294 Overview

The Razorpay for WooCommerce plugin for WordPress contains a missing authorization vulnerability in the getCouponList() function. This security flaw affects all versions up to and including 4.7.8 and stems from a broken authentication implementation where the checkAuthCredentials() permission callback unconditionally returns true, effectively bypassing all access controls.

This vulnerability allows unauthenticated attackers to exploit the unprotected API endpoint to modify billing and shipping contact information (specifically email and phone fields) of any WooCommerce order. The attack requires only knowledge or successful guessing of the target order ID, making exploitation straightforward for motivated attackers.

Critical Impact

Unauthenticated attackers can modify customer billing and shipping contact details on any WooCommerce order, potentially redirecting order communications and enabling fraud or social engineering attacks.

Affected Products

  • Razorpay for WooCommerce plugin versions ≤ 4.7.8
  • WordPress sites running vulnerable versions of the woo-razorpay plugin
  • WooCommerce stores integrated with Razorpay payment gateway

Discovery Timeline

  • 2026-02-19 - CVE CVE-2025-14294 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2025-14294

Vulnerability Analysis

This vulnerability represents a classic Broken Access Control (CWE-306: Missing Authentication for Critical Function) issue in the Razorpay WooCommerce integration plugin. The core problem lies in the plugin's REST API authentication mechanism, where the permission callback designed to protect sensitive endpoints has been implemented incorrectly.

The checkAuthCredentials() function, which should validate that the requesting user has appropriate permissions to access the API, instead returns true unconditionally. This means any request to the affected endpoint—authenticated or not—is granted access without any verification of the caller's identity or authorization level.

The vulnerability is exploitable over the network without requiring user interaction or prior authentication. While the impact is limited to data integrity (modification of order contact details), this could facilitate downstream attacks including order hijacking, phishing, and customer identity theft.

Root Cause

The vulnerability originates from improper implementation of the WordPress REST API permission callback system. The checkAuthCredentials() function in the plugin's authentication module (auth.php) was designed to validate API credentials but instead returns a static true value regardless of the incoming request's authentication status.

This implementation error completely negates the security boundary that should protect WooCommerce order modification endpoints, allowing any external actor to invoke the getCouponList() function and associated order modification capabilities without providing valid credentials.

Attack Vector

An attacker exploiting this vulnerability would craft HTTP requests to the plugin's REST API endpoints. Since the authentication check always passes, the attacker only needs to:

  1. Identify a target WordPress site running the vulnerable Razorpay for WooCommerce plugin
  2. Enumerate or guess valid WooCommerce order IDs (which are often sequential integers)
  3. Submit API requests to modify billing/shipping email and phone information for target orders

The vulnerability mechanism centers on the broken permission callback in the REST API registration. When the WordPress REST API processes a request to the affected endpoint, it invokes checkAuthCredentials() to determine whether the request should be authorized. Because this function unconditionally returns true, all requests are permitted regardless of authentication status.

For detailed technical analysis, refer to the WordPress Woo Razorpay API Overview and the authentication module source.

Detection Methods for CVE-2025-14294

Indicators of Compromise

  • Unusual API requests to /wp-json/ endpoints associated with Razorpay or WooCommerce coupon/order functions from unauthenticated sources
  • Unexpected modifications to customer billing or shipping email/phone fields in WooCommerce order records
  • Spike in REST API traffic to woo-razorpay plugin endpoints, especially from external IP addresses
  • Customer complaints about receiving order-related communications at incorrect contact details

Detection Strategies

  • Monitor WordPress REST API access logs for requests to Razorpay plugin endpoints that lack authentication headers
  • Implement Web Application Firewall (WAF) rules to detect anomalous patterns of order ID enumeration attempts
  • Configure WooCommerce order modification audit logging to track changes to billing/shipping contact information
  • Review access logs for sequential order ID probing patterns indicative of enumeration attacks

Monitoring Recommendations

  • Enable detailed logging for WooCommerce REST API endpoints and review for unauthorized modification attempts
  • Set up alerts for bulk order contact information changes, particularly when originating from unauthenticated sessions
  • Monitor for unusual geographic distribution of API requests to plugin endpoints
  • Implement rate limiting on REST API endpoints to slow enumeration attacks

How to Mitigate CVE-2025-14294

Immediate Actions Required

  • Update the Razorpay for WooCommerce plugin to the latest patched version immediately
  • Audit recent WooCommerce orders for unauthorized modifications to billing/shipping contact information
  • Review WordPress access logs for signs of exploitation prior to patching
  • Notify affected customers if any unauthorized contact detail modifications are discovered

Patch Information

A security patch addressing this vulnerability is available through the WordPress plugin repository. Site administrators should update to the latest version of the Razorpay for WooCommerce plugin that includes proper authentication checks in the checkAuthCredentials() function. The fix can be verified by reviewing the WordPress Woo Razorpay Changeset History.

For additional vulnerability details, consult the Wordfence Vulnerability Advisory.

Workarounds

  • Temporarily disable the Razorpay for WooCommerce plugin if immediate patching is not possible
  • Implement WAF rules to block unauthenticated requests to the affected REST API endpoints
  • Restrict access to WordPress REST API endpoints at the web server level (nginx/Apache) while awaiting the patch
  • Consider placing the WooCommerce admin interface behind VPN or IP allowlisting as an interim measure
bash
# Example Apache configuration to restrict plugin API access
<Location "/wp-json/razorpay/">
    Require ip 192.168.1.0/24
    Require ip 10.0.0.0/8
</Location>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWoocommerce

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Technical References
  • WordPress Woo Razorpay API Overview

  • WordPress Woo Razorpay Auth Script

  • WordPress Woo Razorpay Coupon Retrieval

  • WordPress Woo Razorpay Changeset History

  • Wordfence Vulnerability ID 163d42df
  • Related CVEs
  • CVE-2026-1710: WooPayments Auth Bypass Vulnerability

  • CVE-2025-15484: WooCommerce Auth Bypass Vulnerability

  • CVE-2026-25455: WooCommerce Product Slider Auth Bypass

  • CVE-2026-3138: WooCommerce Filter Auth Bypass 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