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

CVE-2026-6229: Royal Elementor Addons SSRF Vulnerability

CVE-2026-6229 is a Server-Side Request Forgery flaw in Royal Elementor Addons for WordPress that enables authenticated attackers to access internal services. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-6229 Overview

CVE-2026-6229 is a Server-Side Request Forgery (SSRF) vulnerability [CWE-918] in the Royal Elementor Addons plugin for WordPress, affecting all versions up to and including 1.7.1057. The flaw resides in the render_csv_data() function, which performs insufficient validation on user-supplied URLs. Authenticated attackers with Contributor-level access or higher can bypass the URL filter by including the string docs.google.com/spreadsheets in a query parameter. The plugin then passes the attacker-controlled URL to fopen() without blocking internal or private network addresses, enabling requests to arbitrary endpoints.

Critical Impact

Authenticated attackers can pivot through vulnerable WordPress sites to query internal services, cloud metadata endpoints, and private network resources, exposing sensitive data otherwise unreachable from the internet.

Affected Products

  • Royal Elementor Addons plugin for WordPress, versions up to and including 1.7.1057
  • WordPress sites permitting Contributor-level (or higher) account registration with the plugin enabled
  • Hosting environments where the WordPress instance can reach internal network ranges or cloud metadata services

Discovery Timeline

  • 2026-05-02 - CVE-2026-6229 published to NVD
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-6229

Vulnerability Analysis

The vulnerability sits in the data-table widget located at modules/data-table/widgets/wpr-data-table.php. The render_csv_data() function accepts a remote URL intended for importing CSV-formatted spreadsheet data. To restrict the feature to Google Sheets exports, the plugin checks whether the supplied URL contains the substring docs.google.com/spreadsheets. This validation is performed against a query parameter rather than the host component of the URL.

An attacker can craft a URL where docs.google.com/spreadsheets appears anywhere in the query string while the actual host points to an internal resource. The plugin treats the URL as legitimate and passes it to fopen(), which performs the outbound HTTP request from the WordPress server. Because the plugin does not enforce host allowlisting or block RFC1918 ranges, IPv6 link-local addresses, or 127.0.0.0/8, the attacker controls the request destination.

Root Cause

The root cause is improper input validation. The plugin relies on substring matching of the full URL string instead of parsing the URL and validating the host. This logic accepts attacker-supplied hosts as long as the magic string appears somewhere in the URL. The use of fopen() for HTTP fetching, without a network-aware wrapper that blocks private IP ranges, compounds the problem.

Attack Vector

An authenticated user with Contributor privileges submits a data-table widget configuration containing a malicious URL such as http://169.254.169.254/latest/meta-data/?docs.google.com/spreadsheets. When the widget renders, the WordPress server issues an HTTP request to the attacker-specified host and returns the response content. This enables enumeration of internal services, retrieval of cloud instance metadata, and exfiltration of sensitive configuration data accessible to the WordPress process.

No verified public exploit code is available. See the Wordfence Vulnerability Report and the WordPress Plugin Changeset for technical references.

Detection Methods for CVE-2026-6229

Indicators of Compromise

  • Outbound HTTP requests from the WordPress PHP worker to RFC1918 addresses (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) or to the cloud metadata endpoint 169.254.169.254.
  • Web server access logs showing POST or AJAX requests to admin-ajax.php or Elementor preview endpoints from Contributor-level accounts containing the string docs.google.com/spreadsheets in unexpected query positions.
  • New or recently active Contributor accounts saving data-table widget configurations referencing non-Google URLs.

Detection Strategies

  • Inspect PHP fopen() and HTTP wrapper telemetry for requests where the host does not match docs.google.com despite the substring being present in the URL.
  • Correlate Elementor widget save events with subsequent outbound connections from the WordPress host to internal network ranges.
  • Hunt across WordPress audit logs for users with Contributor role creating or editing wpr-data-table widgets.

Monitoring Recommendations

  • Enable egress filtering and log all outbound traffic from WordPress hosts, alerting on connections to private IP space or cloud metadata IPs.
  • Monitor file modification timestamps under wp-content/plugins/royal-elementor-addons/ to confirm patched versions remain in place.
  • Track creation of low-privilege WordPress accounts followed by unusual widget activity within short time windows.

How to Mitigate CVE-2026-6229

Immediate Actions Required

  • Update the Royal Elementor Addons plugin to a version newer than 1.7.1057 as soon as a patched release is available from the vendor.
  • Audit existing WordPress accounts and remove or downgrade any Contributor-level users that are not strictly required.
  • Restrict the WordPress server's outbound network access to deny traffic destined for internal subnets and cloud metadata services.

Patch Information

Review the vendor's fix in the WordPress Plugin Changeset and the affected source in wpr-data-table.php. Apply the latest plugin update via the WordPress admin Plugins page or wp-cli to ensure the render_csv_data() validation is corrected.

Workarounds

  • Temporarily disable the Royal Elementor Addons plugin until the patched release is installed.
  • Apply a Web Application Firewall rule that rejects requests to Elementor AJAX endpoints containing URL parameters where the host is not docs.google.com.
  • Configure cloud instance metadata service v2 (IMDSv2) where available to require session tokens, blocking unauthenticated SSRF probes.
bash
# Example wp-cli commands to mitigate exposure
wp plugin update royal-elementor-addons
wp user list --role=contributor --field=user_login
wp plugin deactivate royal-elementor-addons   # if no patch is yet available

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechElementor

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Changeset

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-5486: Unlimited Elements Elementor SQLi Flaw

  • CVE-2026-4790: Elementor Premium Addons XSS Vulnerability

  • CVE-2026-1206: Elementor Info Disclosure Vulnerability

  • CVE-2026-4655: Element Pack Elementor XSS 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