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

CVE-2025-14799: Brevo WordPress Plugin Auth Bypass Flaw

CVE-2025-14799 is an authorization bypass vulnerability in the Brevo WordPress plugin caused by type juggling. Attackers can disconnect integrations and reset settings. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2025-14799 Overview

The Brevo - Email, SMS, Web Push, Chat, and more plugin for WordPress contains an authorization bypass vulnerability caused by PHP type juggling in the REST API endpoint. This vulnerability affects all versions up to and including 3.3.0, allowing unauthenticated attackers to disconnect the Brevo integration, delete API keys, remove subscription forms, and reset plugin settings by exploiting loose comparison operators in the authorization check.

Critical Impact

Unauthenticated attackers can completely disrupt Brevo email marketing integration by disconnecting services, deleting API keys, and resetting all plugin configurations without any authentication.

Affected Products

  • Brevo - Email, SMS, Web Push, Chat, and more plugin for WordPress versions up to and including 3.3.0
  • WordPress installations with the vulnerable Brevo (formerly Sendinblue) plugin
  • All websites using the /wp-json/mailin/v1/mailin_disconnect REST API endpoint

Discovery Timeline

  • 2026-02-18 - CVE CVE-2025-14799 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2025-14799

Vulnerability Analysis

This authorization bypass vulnerability stems from improper type handling in PHP when validating user-supplied installation IDs. The vulnerable code resides in the sendinblue.php file, specifically within the REST API endpoint handler for /wp-json/mailin/v1/mailin_disconnect. When processing disconnect requests, the plugin uses a loose comparison operator (==) instead of a strict comparison operator (===) to validate the installation ID parameter.

PHP's loose comparison behavior allows type juggling, where values of different types can be considered equal. In this case, when a boolean true value is sent as the id parameter, PHP's loose comparison evaluates true == $installation_id as truthy for any non-empty, non-zero installation ID string. This effectively bypasses the authorization check that should prevent unauthorized users from disconnecting the Brevo integration.

The impact of successful exploitation includes disconnection of the Brevo marketing integration, deletion of stored API keys, removal of all configured subscription forms, and complete reset of plugin settings—causing significant disruption to email marketing operations.

Root Cause

The root cause is the use of loose comparison (==) instead of strict comparison (===) when validating the id parameter against the stored installation ID in the /wp-json/mailin/v1/mailin_disconnect REST API endpoint. This type confusion vulnerability (CWE-843) allows attackers to bypass authorization by sending a boolean true value that passes the loose equality check regardless of the actual installation ID value.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker sends a crafted HTTP request to the vulnerable REST API endpoint (/wp-json/mailin/v1/mailin_disconnect) with the id parameter set to a boolean true value. Because PHP's loose comparison evaluates true == "any_string" as truthy, this bypasses the installation ID validation check, granting the attacker unauthorized access to disconnect the Brevo integration and reset plugin configurations.

The vulnerability can be exploited by sending a JSON payload containing {"id": true} to the disconnect endpoint. The loose comparison in the authorization logic then incorrectly validates this boolean value against the stored string installation ID, allowing the disconnect operation to proceed without proper authorization.

Detection Methods for CVE-2025-14799

Indicators of Compromise

  • Unexpected disconnection of the Brevo integration without administrator action
  • Missing or deleted Brevo API keys in plugin settings
  • Subscription forms suddenly removed from the website
  • Plugin configuration reset to default values
  • Unusual HTTP requests to /wp-json/mailin/v1/mailin_disconnect endpoint in access logs

Detection Strategies

  • Monitor access logs for POST requests to the /wp-json/mailin/v1/mailin_disconnect endpoint from unauthorized sources
  • Implement web application firewall (WAF) rules to detect requests with boolean values in JSON payloads to REST API endpoints
  • Enable WordPress REST API logging to track all requests to mailin namespace endpoints
  • Set up alerts for configuration changes to the Brevo plugin

Monitoring Recommendations

  • Configure SentinelOne Singularity to monitor for suspicious REST API activity on WordPress installations
  • Implement file integrity monitoring on the Brevo plugin configuration files
  • Review access logs regularly for patterns indicating exploitation attempts
  • Monitor for unauthorized changes to plugin settings through WordPress hooks

How to Mitigate CVE-2025-14799

Immediate Actions Required

  • Update the Brevo plugin to a version newer than 3.3.0 immediately
  • Audit recent access logs for any exploitation attempts targeting the vulnerable endpoint
  • Verify Brevo integration status and re-configure if disconnection occurred
  • Regenerate Brevo API keys if there is any suspicion of unauthorized access

Patch Information

The vulnerability has been addressed in versions after 3.3.0 of the Brevo plugin. The fix involves replacing the loose comparison operator (==) with a strict comparison operator (===) when validating the installation ID parameter. For detailed information about the code changes, see the WordPress Plugin Changeset. The Wordfence Vulnerability Report provides additional details about this vulnerability.

Workarounds

  • Temporarily restrict access to the /wp-json/mailin/v1/mailin_disconnect endpoint via web server configuration or WAF rules until the plugin can be updated
  • Implement IP-based access controls to limit REST API access to trusted networks
  • Use a security plugin to add additional authorization checks on REST API endpoints
  • Consider temporarily deactivating the Brevo plugin if an immediate update is not possible
bash
# Apache .htaccess configuration to block vulnerable endpoint
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-json/mailin/v1/mailin_disconnect [NC]
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/TechBrevo

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.02%

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

  • WordPress Plugin Source Code

  • WordPress Change Log Entry

  • Wordfence Vulnerability Report
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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