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

CVE-2026-1558: WP Recipe Maker Auth Bypass Vulnerability

CVE-2026-1558 is an authentication bypass flaw in WP Recipe Maker plugin for WordPress that allows unauthenticated attackers to overwrite post metadata. This post covers technical details, affected versions, impact, and mitigation.

Published: March 6, 2026

CVE-2026-1558 Overview

The WP Recipe Maker plugin for WordPress is vulnerable to an Insecure Direct Object Reference (IDOR) in versions up to, and including, 10.3.2. This vulnerability exists due to the /wp-json/wp-recipe-maker/v1/integrations/instacart REST API endpoint's permission_callback being set to __return_true and a lack of subsequent authorization or ownership checks on the user-supplied recipeId. This makes it possible for unauthenticated attackers to overwrite arbitrary post metadata (wprm_instacart_combinations) for any post ID on the site via the recipeId parameter.

Critical Impact

Unauthenticated attackers can manipulate post metadata across any WordPress post, potentially affecting site integrity and the behavior of Instacart shopping integrations on recipe content.

Affected Products

  • WP Recipe Maker plugin for WordPress versions up to and including 10.3.2
  • WordPress sites utilizing WP Recipe Maker's Instacart integration feature
  • Any WordPress installation with the vulnerable REST API endpoint exposed

Discovery Timeline

  • February 27, 2026 - CVE-2026-1558 published to NVD
  • February 27, 2026 - Last updated in NVD database

Technical Details for CVE-2026-1558

Vulnerability Analysis

This Insecure Direct Object Reference (IDOR) vulnerability (CWE-639) stems from improper access control in the WP Recipe Maker plugin's REST API implementation. The vulnerability allows attackers to bypass authorization mechanisms entirely, as the API endpoint responsible for handling Instacart integration data lacks proper authentication and ownership validation.

The core issue lies in the REST API endpoint configuration where the permission_callback function is set to __return_true, a WordPress function that simply returns true without performing any actual permission checks. This effectively makes the endpoint publicly accessible to anyone, including unauthenticated users. Combined with the absence of subsequent checks to verify whether the requesting user has legitimate access to the specified recipeId, attackers can target and modify metadata for any post on the WordPress site.

Root Cause

The root cause of this vulnerability is the misconfiguration of the REST API endpoint's permission callback mechanism. In the WordPress Plugin API Integration code, the permission_callback is set to __return_true, which bypasses all authentication requirements. Additionally, the Instacart integration handler fails to implement authorization checks to verify that the requesting user owns or has permission to modify the specified recipe post.

This architectural flaw allows any external party to submit API requests that modify the wprm_instacart_combinations metadata field for arbitrary post IDs, as the recipeId parameter is processed without validation against the current user's permissions.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending crafted HTTP requests directly to the vulnerable REST API endpoint. The attack process involves:

  1. Identifying a target WordPress site running a vulnerable version of WP Recipe Maker
  2. Crafting a malicious API request to /wp-json/wp-recipe-maker/v1/integrations/instacart with an arbitrary recipeId
  3. Submitting the request to overwrite the wprm_instacart_combinations post metadata for the targeted post ID

Since no authentication is required and the recipeId parameter is not validated against user permissions, attackers can systematically target any post on the WordPress site, not just recipe posts created by the plugin.

Detection Methods for CVE-2026-1558

Indicators of Compromise

  • Unexpected modifications to post metadata, specifically the wprm_instacart_combinations field
  • Unusual API request patterns targeting the /wp-json/wp-recipe-maker/v1/integrations/instacart endpoint
  • High volumes of requests from unauthenticated sources to the vulnerable REST API endpoint
  • Changes to Instacart shopping integration data on recipe posts without corresponding administrative activity

Detection Strategies

  • Monitor WordPress REST API access logs for requests to the wp-recipe-maker/v1/integrations/instacart endpoint from unauthenticated users
  • Implement web application firewall (WAF) rules to detect and alert on suspicious parameter patterns in requests to the vulnerable endpoint
  • Review WordPress post metadata tables for unauthorized changes to the wprm_instacart_combinations field
  • Use SentinelOne Singularity to monitor for anomalous network traffic patterns targeting WordPress REST API endpoints

Monitoring Recommendations

  • Enable detailed logging for WordPress REST API requests, particularly for plugin-specific endpoints
  • Set up alerts for bulk or repeated requests to the vulnerable endpoint from single IP addresses
  • Implement integrity monitoring for WordPress post metadata to detect unauthorized modifications
  • Consider deploying a WordPress security plugin with REST API monitoring capabilities

How to Mitigate CVE-2026-1558

Immediate Actions Required

  • Update WP Recipe Maker plugin to the latest patched version immediately
  • Temporarily disable the Instacart integration feature if the plugin cannot be updated immediately
  • Review post metadata for signs of unauthorized modifications, particularly the wprm_instacart_combinations field
  • Implement WAF rules to block unauthenticated requests to the vulnerable REST API endpoint

Patch Information

The vendor has released a security patch addressing this vulnerability. The fix can be reviewed in the WordPress Recipe Maker Changeset. Users should update to the latest version of WP Recipe Maker available through the WordPress plugin repository. Additional vulnerability details are available in the Wordfence Vulnerability Report.

Workarounds

  • Restrict access to the WordPress REST API for unauthenticated users using a security plugin or web server configuration
  • Implement IP-based access controls for the /wp-json/wp-recipe-maker/v1/integrations/instacart endpoint
  • Use a web application firewall to filter and block malicious requests targeting the vulnerable endpoint
  • Disable the WP Recipe Maker plugin entirely until a patch can be applied if the Instacart integration is not critical to site functionality
bash
# Apache .htaccess workaround to block unauthenticated access to vulnerable endpoint
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-json/wp-recipe-maker/v1/integrations/instacart [NC]
RewriteCond %{HTTP_COOKIE} !wordpress_logged_in
RewriteRule .* - [F,L]
</IfModule>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.06%

  • 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-639
  • Technical References
  • WordPress Plugin API Integration

  • WordPress Instacart Integration

  • WordPress Recipe Maker Changeset

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-6214: Forminator Forms Auth Bypass Vulnerability

  • CVE-2026-4807: WordPress Appointment Booking Auth Bypass

  • CVE-2026-5753: WordPress Migration Plugin Auth Bypass Flaw

  • CVE-2026-32834: WordPress PayPal Plugin Auth Bypass Flaw
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