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
    • 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-13496

CVE-2025-13496: Moosend Landing Pages Auth Bypass Flaw

CVE-2025-13496 is an authentication bypass vulnerability in the Moosend Landing Pages WordPress plugin allowing authenticated subscribers to delete API key settings. This article covers technical details, affected versions, and mitigations.

Updated: January 22, 2026

CVE-2025-13496 Overview

The Moosend Landing Pages plugin for WordPress contains a missing capability check vulnerability in the moosend_landings_auth_get function. This authorization bypass affects all versions up to and including 1.1.6, allowing authenticated attackers with Subscriber-level access or above to delete the moosend_landing_api_key option value without proper authorization.

Critical Impact

Authenticated users with minimal privileges can modify plugin configuration data, potentially disrupting the integration between WordPress and Moosend services and breaking landing page functionality.

Affected Products

  • Moosend Landing Pages plugin for WordPress versions up to and including 1.1.6
  • WordPress installations utilizing the Moosend Landing Pages plugin

Discovery Timeline

  • January 7, 2026 - CVE-2025-13496 published to NVD
  • January 8, 2026 - Last updated in NVD database

Technical Details for CVE-2025-13496

Vulnerability Analysis

This vulnerability is classified under CWE-862 (Missing Authorization), which occurs when the software does not perform an authorization check when an actor attempts to access a resource or perform an action. The moosend_landings_auth_get function in the Moosend Landing Pages plugin fails to verify that the requesting user has the appropriate capabilities before processing the request.

The vulnerability allows any authenticated WordPress user, even those with the lowest Subscriber role, to invoke the vulnerable function. When exploited, this results in the deletion of the moosend_landing_api_key option from the WordPress database, which stores the API credentials necessary for the plugin to communicate with Moosend's email marketing platform.

Root Cause

The root cause is a missing capability check in the moosend_landings_auth_get function located in forms/auth-request.php. WordPress plugins should implement proper authorization checks using functions like current_user_can() to verify that users have appropriate permissions before executing sensitive operations. The vulnerable code path does not include these checks, allowing any authenticated user to trigger the function regardless of their role or capabilities.

Attack Vector

The attack is conducted over the network and requires authentication with any WordPress user account. An attacker who has compromised or created a Subscriber-level account can send requests to the vulnerable endpoint. The exploitation requires no user interaction and has low complexity. The successful exploitation results in unauthorized data modification, specifically the deletion of the API key configuration, which can disrupt the plugin's functionality and affect business operations dependent on Moosend integration.

The vulnerability can be exploited by crafting HTTP requests that target the authentication handling functionality within the plugin. Since no capability check exists, the WordPress authentication system alone is insufficient to prevent the attack.

Detection Methods for CVE-2025-13496

Indicators of Compromise

  • Unexpected modifications or deletions of the moosend_landing_api_key option in the WordPress wp_options table
  • Failed Moosend API connections or broken landing page functionality following unexplained configuration changes
  • Suspicious HTTP requests to the plugin's auth-request.php endpoint from low-privilege user sessions
  • Audit log entries showing Subscriber or Contributor-level users accessing plugin administrative functions

Detection Strategies

  • Implement WordPress database monitoring to track changes to the wp_options table, specifically for the moosend_landing_api_key option
  • Deploy web application firewall (WAF) rules to detect and alert on requests to the vulnerable moosend_landings_auth_get endpoint from non-administrative users
  • Enable and review WordPress audit logging to identify unauthorized access patterns from low-privilege accounts
  • Monitor for plugin functionality failures that may indicate successful exploitation

Monitoring Recommendations

  • Configure SentinelOne Singularity to monitor WordPress application directories for suspicious activity patterns
  • Implement alerting on unexpected option value deletions within the WordPress database
  • Establish baseline behavior for plugin-related API calls and alert on deviations
  • Review user activity logs regularly for Subscriber accounts performing administrative actions

How to Mitigate CVE-2025-13496

Immediate Actions Required

  • Update the Moosend Landing Pages plugin to a version newer than 1.1.6 that includes the security fix
  • Audit recent changes to the moosend_landing_api_key option to determine if exploitation has occurred
  • Review and remove any unnecessary Subscriber-level accounts that may have been created by attackers
  • Temporarily disable the Moosend Landing Pages plugin if an update is not immediately available and the plugin is not critical to operations

Patch Information

Users should update to the latest version of the Moosend Landing Pages plugin from the WordPress plugin repository. The vulnerability exists in versions up to and including 1.1.6. The fix should implement proper capability checks using WordPress's authorization functions. For technical details on the vulnerable code, refer to the WordPress Plugin Code Review and the Wordfence Vulnerability Report.

Workarounds

  • Restrict user registration on WordPress sites to prevent attackers from creating accounts with Subscriber privileges
  • Implement additional access control layers using security plugins that can restrict access to plugin functionality based on user roles
  • Use a Web Application Firewall (WAF) to filter requests to the vulnerable endpoint from non-administrative users
  • Consider implementing IP-based restrictions for administrative functions if your environment supports it
bash
# WordPress wp-config.php - Disable user registration as a temporary mitigation
# Add or modify the following line in wp-config.php:
define('WP_ALLOW_MULTISITE', false);

# Alternatively, in WordPress admin: Settings > General > uncheck "Anyone can register"

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.03%

  • 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-862
  • Technical References
  • WordPress Plugin Code Review

  • WordPress Plugin Source Code

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-2519: Bookly WordPress Plugin Auth Bypass Flaw

  • CVE-2026-4326: Vertex Addons Auth Bypass Vulnerability

  • CVE-2025-14944: Backup Migration Plugin Auth Bypass Flaw

  • CVE-2026-3646: WordPress LTL 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