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

CVE-2025-14873: LatePoint WordPress Plugin CSRF Vulnerability

CVE-2025-14873 is a Cross-Site Request Forgery flaw in the LatePoint WordPress plugin that allows unauthenticated attackers to perform administrative actions. This post covers the technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2025-14873 Overview

The LatePoint – Calendar Booking Plugin for Appointments and Events plugin for WordPress contains a Cross-Site Request Forgery (CSRF) vulnerability in all versions up to and including 5.2.5. The vulnerability exists in the call_by_route_name function within the plugin's routing layer, which only validates user capabilities without enforcing nonce verification. This security flaw allows unauthenticated attackers to perform multiple administrative actions via forged requests, provided they can trick a site administrator into performing an action such as clicking on a malicious link.

Critical Impact

Unauthenticated attackers can execute administrative actions on affected WordPress sites by exploiting missing nonce verification in the routing layer, potentially leading to unauthorized modifications to booking configurations and appointment data.

Affected Products

  • LatePoint – Calendar Booking Plugin for Appointments and Events for WordPress versions up to and including 5.2.5

Discovery Timeline

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

Technical Details for CVE-2025-14873

Vulnerability Analysis

This vulnerability is classified as CWE-352: Cross-Site Request Forgery. The root issue lies in the plugin's routing architecture where administrative function calls are processed without proper CSRF protection mechanisms. The call_by_route_name function serves as a central routing handler that dispatches requests to various administrative endpoints. While the function implements capability checks to verify that the requesting user has appropriate permissions, it fails to validate that requests originate from legitimate sources through nonce verification.

In WordPress security best practices, nonces serve as one-time tokens that validate the authenticity of form submissions and AJAX requests. Without nonce verification, the plugin cannot distinguish between legitimate administrator-initiated requests and forged requests crafted by attackers. This oversight creates an exploitable attack surface where malicious actors can construct specially crafted requests that execute administrative actions when an authenticated administrator unknowingly triggers them.

Root Cause

The vulnerability stems from an incomplete implementation of WordPress security controls in the plugin's routing layer. The call_by_route_name function performs user capability validation to ensure only users with appropriate roles can execute administrative functions, but it omits the critical step of nonce verification. WordPress provides the wp_verify_nonce() function and related APIs specifically to prevent CSRF attacks, but these protections were not implemented in the affected code paths. This architectural oversight allows attackers to bypass the security model by leveraging an authenticated administrator's existing session.

Attack Vector

The attack requires network access and user interaction, specifically requiring an authenticated administrator to trigger the malicious request. An attacker would craft a specially designed HTML page or link containing a forged request targeting the vulnerable plugin endpoints. The attacker must then use social engineering techniques to convince a logged-in WordPress administrator to visit the malicious page or click the crafted link while their administrative session is active.

When the administrator's browser processes the malicious request, it automatically includes their authentication cookies, causing the WordPress server to accept the forged request as a legitimate administrative action. This can result in unauthorized modifications to plugin settings, booking configurations, service definitions, or other administrative data managed by the LatePoint plugin.

Detection Methods for CVE-2025-14873

Indicators of Compromise

  • Unexpected modifications to LatePoint plugin settings or booking configurations
  • Administrative actions logged in WordPress audit trails that administrators did not intentionally perform
  • Suspicious referrer headers in web server logs indicating requests originated from external domains
  • Unusual patterns of administrative API calls targeting LatePoint plugin endpoints

Detection Strategies

  • Monitor WordPress audit logs for administrative actions on the LatePoint plugin that lack corresponding user activity
  • Implement web application firewall (WAF) rules to detect and block requests with suspicious referrer headers targeting admin endpoints
  • Review server access logs for POST requests to LatePoint administrative routes originating from external referrers
  • Deploy endpoint detection solutions capable of identifying browser-based CSRF attack patterns

Monitoring Recommendations

  • Enable comprehensive WordPress activity logging to track all plugin configuration changes
  • Configure alerting for administrative actions performed outside normal business hours or from unusual IP addresses
  • Implement real-time monitoring for modifications to critical booking and appointment settings
  • Establish baseline patterns for legitimate administrative activity to detect anomalous behavior

How to Mitigate CVE-2025-14873

Immediate Actions Required

  • Update the LatePoint plugin to a version newer than 5.2.5 that includes the security patch
  • Review recent plugin configuration changes for any unauthorized modifications
  • Audit booking data and appointment settings for unexpected alterations
  • Educate administrators about the risks of clicking untrusted links while logged into WordPress

Patch Information

The vulnerability has been addressed in newer versions of the LatePoint plugin. The security fix can be reviewed in the WordPress Plugin Changeset. Site administrators should update to the latest available version through the WordPress plugin repository. Additional technical details about this vulnerability are available in the Wordfence Vulnerability Report.

Workarounds

  • Limit administrative access to the WordPress dashboard to trusted networks or VPN connections until the patch can be applied
  • Implement additional CSRF protection at the web application firewall level for LatePoint administrative endpoints
  • Advise administrators to use dedicated browser sessions for WordPress administration and avoid clicking external links while logged in
  • Consider temporarily disabling the LatePoint plugin if immediate patching is not feasible and the plugin is not critical to operations

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • WordPress Plugin Changeset

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2025-39417: WordPress Redirect Plugin CSRF Vulnerability

  • CVE-2026-6451: WordPress CMS für Motorrad Plugin CSRF Flaw

  • CVE-2026-6396: WordPress 3F Plugin CSRF Vulnerability

  • CVE-2026-4131: WP Responsive Popup + Optin CSRF 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