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-2026-5365

CVE-2026-5365: LatePoint WordPress Plugin CSRF Vulnerability

CVE-2026-5365 is a Cross-Site Request Forgery flaw in the LatePoint WordPress plugin allowing attackers to cancel customer bookings through forged requests. This article covers technical details, affected versions, and mitigation.

Published: May 14, 2026

CVE-2026-5365 Overview

CVE-2026-5365 is a Cross-Site Request Forgery (CSRF) vulnerability [CWE-352] affecting the LatePoint plugin for WordPress in all versions up to and including 5.3.2. The flaw stems from missing nonce verification on the request_cancellation() function within the customer cabinet controller. Unauthenticated attackers can cancel a logged-in customer's bookings by tricking the customer into clicking a malicious link or visiting a crafted page. Exploitation requires user interaction but no authentication on the attacker side.

Critical Impact

A successful CSRF attack allows remote unauthenticated actors to cancel arbitrary bookings belonging to authenticated LatePoint customers, disrupting appointment scheduling integrity.

Affected Products

  • LatePoint plugin for WordPress, versions through 5.3.2
  • Fixed in LatePoint version 5.4.0
  • WordPress sites using LatePoint customer cabinet functionality

Discovery Timeline

  • 2026-05-14 - CVE-2026-5365 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-5365

Vulnerability Analysis

The LatePoint plugin exposes a request_cancellation() handler in lib/controllers/customer_cabinet_controller.php that processes booking cancellation requests for authenticated customers. The handler does not validate a WordPress nonce or any anti-CSRF token before performing the state-changing cancellation action. Any cross-origin request that carries the victim's authenticated session cookies will be accepted as legitimate. The attack vector is network-based and requires the victim to interact with attacker-controlled content such as a hyperlink, image tag, or auto-submitting form.

Root Cause

The root cause is the absence of nonce verification on a state-changing endpoint. WordPress provides wp_verify_nonce() and check_admin_referer() primitives specifically to defeat CSRF, but the affected controller method omits these checks. Without server-side validation that the request originated from a trusted page, the browser-attached session cookie alone is treated as sufficient authorization.

Attack Vector

An attacker hosts a page containing a forged GET or POST request targeting the LatePoint cancellation endpoint. When a logged-in LatePoint customer visits the page or clicks an attacker-supplied link, the browser submits the request with valid session cookies. The plugin processes the cancellation as if the customer initiated it. The vulnerability does not allow arbitrary account takeover or data exfiltration, but it does break booking integrity. Technical specifics of the patched code path are available in the WordPress Change Log Entry.

Detection Methods for CVE-2026-5365

Indicators of Compromise

  • Unexpected booking cancellation events in LatePoint logs that lack a matching customer session navigation pattern
  • HTTP Referer headers on cancellation requests pointing to external or unrelated domains
  • Bursts of cancellation requests originating from a single IP within a short window
  • Customer complaints about appointments being cancelled without their action

Detection Strategies

  • Inspect WordPress access logs for requests to LatePoint cancellation endpoints with cross-origin or empty Referer headers
  • Correlate cancellation database writes with user-agent and IP changes versus the customer's normal session activity
  • Deploy a web application firewall rule that flags state-changing LatePoint requests missing a nonce parameter

Monitoring Recommendations

  • Enable verbose logging on the LatePoint customer cabinet controller and forward logs to a central SIEM
  • Track the rate and source distribution of booking cancellations and alert on statistical anomalies
  • Monitor outbound email confirmations for cancellation notifications that customers did not request

How to Mitigate CVE-2026-5365

Immediate Actions Required

  • Upgrade the LatePoint plugin to version 5.4.0 or later on every WordPress site that uses it
  • Audit recent booking cancellations for the past several weeks and validate them with affected customers
  • Restrict access to the WordPress admin and customer cabinet behind a WAF capable of CSRF heuristics

Patch Information

The vendor addressed the issue in LatePoint 5.4.0 by adding nonce verification to the request_cancellation() function. The code change is documented in the WordPress Change Log Entry and summarized in the Wordfence Vulnerability Insight. Administrators should update through the WordPress plugin dashboard or by replacing the plugin files manually.

Workarounds

  • If patching is delayed, disable the LatePoint customer cabinet feature until the upgrade is applied
  • Deploy WAF rules that require a valid Referer or Origin header matching the site domain on all LatePoint POST and GET state-changing routes
  • Educate customers to log out of the booking portal before browsing untrusted sites or clicking unsolicited links
bash
# Update LatePoint via WP-CLI to the patched release
wp plugin update latepoint --version=5.4.0
wp plugin get latepoint --field=version

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

  • 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 Change Log Entry

  • Wordfence Vulnerability Insight
  • Related CVEs
  • CVE-2026-6701: WordPress addfreespace Plugin CSRF Flaw

  • CVE-2026-6702: WordPress Publish 2 Ping.fm CSRF Vulnerability

  • CVE-2026-6700: DX Sources WordPress Plugin CSRF Flaw

  • CVE-2026-3772: WP Editor Plugin 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