Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-3102

CVE-2025-3102: SureTriggers Auth Bypass Vulnerability

CVE-2025-3102 is an authentication bypass flaw in SureTriggers plugin for WordPress that allows attackers to create admin accounts when the plugin is unconfigured. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-3102 Overview

The SureTriggers: All-in-One Automation Platform plugin for WordPress contains a critical authentication bypass vulnerability that enables unauthenticated attackers to create administrator accounts on vulnerable WordPress installations. The flaw exists in the autheticate_user function within the plugin's REST controller, where a missing empty value check on the secret_key parameter allows attackers to bypass authentication when the plugin is installed and activated but not yet configured with an API key.

Critical Impact

Unauthenticated attackers can create administrator accounts on WordPress sites running vulnerable versions of SureTriggers, leading to complete site takeover.

Affected Products

  • SureTriggers: All-in-One Automation Platform plugin for WordPress versions up to and including 1.0.78
  • WordPress installations with unconfigured SureTriggers plugin
  • Sites with the plugin installed and activated but lacking API key configuration

Discovery Timeline

  • 2025-04-10 - CVE-2025-3102 published to NVD
  • 2025-04-11 - Last updated in NVD database

Technical Details for CVE-2025-3102

Vulnerability Analysis

This authentication bypass vulnerability stems from improper comparison logic (CWE-697: Incorrect Comparison) in the plugin's authentication mechanism. When the SureTriggers plugin is installed and activated on a WordPress site but has not been configured with an API key, the secret_key stored in the system remains empty. The vulnerable autheticate_user function in RestController.php fails to validate whether the secret_key value is empty before performing the authentication comparison.

An attacker can exploit this condition by sending requests with an empty or null secret_key header value. Since both the attacker-supplied value and the stored secret are empty, the comparison succeeds, granting unauthorized access to protected REST API endpoints. This access allows attackers to invoke functionality that creates new administrator accounts on the target WordPress installation.

Root Cause

The root cause is a missing empty value check in the authentication logic within the autheticate_user function located in src/Controllers/RestController.php. The function compares the user-supplied secret_key against the stored value but does not verify that either value is non-empty before performing the comparison. This allows the authentication check to pass when both values are empty strings or null, which occurs in the default unconfigured state of the plugin.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker targets WordPress sites with the SureTriggers plugin in an unconfigured state—specifically where the plugin is installed and activated but no API key has been set. The attacker sends crafted HTTP requests to the plugin's REST API endpoints with an empty secret_key header value. Because the stored secret is also empty in this state, the authentication comparison succeeds, granting the attacker access to administrative functionality including user creation endpoints.

The vulnerability is particularly dangerous during the window between plugin installation and full configuration, which may be extended on sites where administrators delay or forget to complete the setup process. Automated scanners can easily identify vulnerable installations by probing for the SureTriggers REST endpoints and testing the authentication bypass condition.

Detection Methods for CVE-2025-3102

Indicators of Compromise

  • Unexpected administrator accounts created on WordPress sites
  • REST API requests to SureTriggers plugin endpoints with empty or missing authentication headers
  • New user registrations with administrative privileges from unknown IP addresses
  • Unusual activity in WordPress user management logs coinciding with SureTriggers API access

Detection Strategies

  • Monitor WordPress REST API logs for requests targeting /wp-json/suretriggers/ endpoints with empty authentication parameters
  • Implement alerting for new administrator account creation events, especially from non-standard sources
  • Review access logs for patterns of reconnaissance activity probing for SureTriggers plugin presence
  • Deploy web application firewall rules to detect and block authentication bypass attempts

Monitoring Recommendations

  • Enable detailed logging for WordPress REST API activity and user management events
  • Configure alerts for administrator account creation outside of normal administrative workflows
  • Monitor for bulk scanning activity targeting WordPress plugin endpoints
  • Implement real-time monitoring of critical WordPress configuration changes

How to Mitigate CVE-2025-3102

Immediate Actions Required

  • Update the SureTriggers plugin to version 1.0.79 or later immediately
  • Review WordPress user accounts for any unauthorized administrator accounts and remove them
  • If the plugin was installed but unconfigured, either configure it with a valid API key or deactivate and remove it
  • Audit access logs for signs of exploitation prior to patching

Patch Information

The vulnerability has been addressed in SureTriggers plugin version 1.0.79. The fix adds proper validation to ensure the secret_key value is not empty before performing authentication comparisons. Administrators should update through the WordPress plugin management interface or by downloading the patched version from the WordPress plugin repository. The WordPress Changeset History details the specific code changes implemented to remediate this vulnerability. Additional technical information is available in the Wordfence Vulnerability Report.

Workarounds

  • Deactivate the SureTriggers plugin until it can be updated to a patched version
  • If the plugin must remain active, immediately configure it with a valid API key to prevent the empty value bypass
  • Implement web application firewall rules to block unauthenticated requests to SureTriggers REST API endpoints
  • Restrict access to WordPress REST API endpoints at the network level where possible
bash
# Verify current SureTriggers plugin version via WP-CLI
wp plugin list --name=suretriggers --fields=name,version,status

# Update to patched version
wp plugin update suretriggers

# Check for unauthorized administrator accounts
wp user list --role=administrator --fields=ID,user_login,user_registered

# Deactivate plugin as temporary mitigation if update not immediately possible
wp plugin deactivate suretriggers

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

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability85.46%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-697
  • Technical References
  • WordPress Plugin Source Code

  • WordPress Changeset History

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-6441: Canto WordPress Plugin Auth Bypass Flaw

  • CVE-2026-3488: WP Statistics Auth Bypass Vulnerability

  • CVE-2026-5234: LatePoint WordPress Auth Bypass Vulnerability

  • CVE-2026-5427: Kubio WordPress Plugin File Upload 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