A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-8787

CVE-2026-8787: Firebase Support Plugin Privilege Escalation

CVE-2026-8787 is a privilege escalation vulnerability in the Firebase Support & Chat Management plugin for WordPress that allows attackers to hijack any account. This post covers the technical details, affected versions, and mitigations.

Published: May 28, 2026

CVE-2026-8787 Overview

CVE-2026-8787 is a privilege escalation vulnerability in the Firebase Support & Chat Management plugin for WordPress, affecting all versions up to and including 3.1.1. The flaw resides in the firebase_auth() function, which authenticates requests based solely on the user_email POST parameter. The plugin does not verify ownership of the supplied email through Firebase ID token signature, issuer, or audience checks. Authenticated attackers with Subscriber-level access can submit an Administrator's email to the acb_firebase_auth AJAX action and log in as that user. The vulnerability is categorized under [CWE-269: Improper Privilege Management].

Critical Impact

Subscriber-level attackers can take over Administrator accounts, gaining full control of the affected WordPress site.

Affected Products

  • Firebase Support & Chat Management plugin for WordPress (admin-chat-box)
  • All versions up to and including 3.1.1
  • WordPress sites with the plugin installed and active

Discovery Timeline

  • 2026-05-27 - CVE-2026-8787 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-8787

Vulnerability Analysis

The vulnerability stems from the firebase_auth() function in ACB_AjaxHandler.php, which handles the acb_firebase_auth AJAX action. The function trusts the user_email POST parameter as proof of identity. It locates the matching WordPress user record and authenticates the session as that user. No cryptographic verification of a Firebase ID token occurs at any point in the flow.

Firebase authentication is designed around signed ID tokens issued by Google. Server-side handlers must validate the token signature, the iss (issuer) claim, the aud (audience) claim, and confirm the email is verified within the token payload. The plugin omits all of these checks. As a result, the email parameter alone determines which WordPress account the request is treated as.

Because the AJAX endpoint requires only a valid WordPress nonce available to any authenticated user, Subscriber-level accounts meet the access requirement. Submitting an Administrator's email yields a full Administrator session.

Root Cause

The root cause is missing token verification in a federated authentication handler. The plugin treats client-supplied data as authoritative identity evidence. Without signature validation against Google's public keys, the server cannot prove that the requester controls the supplied email.

Attack Vector

An attacker registers or uses any existing Subscriber-level account on the target site. The attacker then sends a POST request to admin-ajax.php invoking the acb_firebase_auth action with the user_email parameter set to an Administrator's email address. The server issues authentication cookies for the targeted account, granting full administrative access including plugin installation and arbitrary PHP execution.

The vulnerable code paths can be reviewed in the WordPress Plugin Code Snippet at line 237 and the WordPress Plugin Code Snippet at line 338.

Detection Methods for CVE-2026-8787

Indicators of Compromise

  • POST requests to /wp-admin/admin-ajax.php with action=acb_firebase_auth originating from low-privilege user sessions
  • Authentication cookies issued for Administrator accounts immediately following an acb_firebase_auth request
  • New Administrator accounts, plugin installations, or theme uploads following suspicious AJAX activity
  • WordPress audit log entries showing Administrator logins without corresponding password reset or normal login events

Detection Strategies

  • Inspect web server access logs for acb_firebase_auth action calls and correlate the requesting session user with the resulting authenticated user
  • Monitor for session role changes within a single browser session, particularly Subscriber-to-Administrator transitions
  • Deploy WordPress security plugins or web application firewall rules that flag requests to the acb_firebase_auth endpoint pending patch deployment

Monitoring Recommendations

  • Enable WordPress activity logging to capture user role assignments, login events, and AJAX endpoint usage
  • Forward WordPress and web server logs to a centralized SIEM for correlation across authentication events
  • Alert on creation of new administrator-level users or modifications to the wp_users and wp_usermeta tables

How to Mitigate CVE-2026-8787

Immediate Actions Required

  • Deactivate and remove the Firebase Support & Chat Management plugin until a patched version is available
  • Audit all WordPress user accounts for unauthorized Administrator-level access and remove suspicious entries
  • Force password resets for all Administrator accounts and invalidate active sessions
  • Review recent plugin installations, theme uploads, and file modifications for signs of post-exploitation activity

Patch Information

At the time of publication, no patched version beyond 3.1.1 is referenced in the NVD entry. Site administrators should consult the Wordfence Vulnerability Report for current patch status and apply vendor updates as soon as they become available.

Workarounds

  • Remove the plugin entirely from production WordPress installations until a fix is released
  • Restrict access to /wp-admin/admin-ajax.php for the acb_firebase_auth action using web application firewall rules
  • Disable open user registration to limit the pool of Subscriber-level accounts available for exploitation
  • Apply principle of least privilege by reviewing and downgrading any unnecessary user roles
bash
# Example WAF rule to block the vulnerable AJAX action
# ModSecurity rule example
SecRule REQUEST_URI "@contains /wp-admin/admin-ajax.php" \
  "chain,deny,status:403,id:1026008787,msg:'Block CVE-2026-8787 acb_firebase_auth abuse'"
  SecRule ARGS:action "@streq acb_firebase_auth"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.04%

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

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-6226: WordPress Plugin Privilege Escalation Flaw

  • CVE-2026-7651: WordPress User Registration IDOR Vulnerability

  • CVE-2026-6895: WishList Member Privilege Escalation Flaw

  • CVE-2026-6419: WishList Member Privilege Escalation Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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