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

CVE-2026-2355: My Calendar WordPress Plugin XSS Vulnerability

CVE-2026-2355 is a stored cross-site scripting vulnerability in the My Calendar plugin for WordPress that allows authenticated attackers to inject malicious scripts. This article covers technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-2355 Overview

The My Calendar – Accessible Event Manager plugin for WordPress contains a Stored Cross-Site Scripting (XSS) vulnerability in all versions up to and including 3.7.3. The vulnerability exists in the template attribute of the [my_calendar_upcoming] shortcode, allowing authenticated attackers with Contributor-level access or higher to inject arbitrary web scripts into pages that execute whenever users access the compromised content.

Critical Impact

Authenticated attackers can inject persistent malicious scripts that execute in victims' browsers, potentially leading to session hijacking, credential theft, website defacement, or redirection to malicious sites.

Affected Products

  • My Calendar – Accessible Event Manager plugin for WordPress versions up to and including 3.7.3
  • WordPress installations using vulnerable My Calendar plugin versions
  • Sites with Contributor-level or higher user accounts

Discovery Timeline

  • 2026-03-04 - CVE CVE-2026-2355 published to NVD
  • 2026-03-04 - Last updated in NVD database

Technical Details for CVE-2026-2355

Vulnerability Analysis

This Stored Cross-Site Scripting vulnerability occurs due to improper handling of shortcode attribute values within the My Calendar plugin. The core issue stems from the use of stripcslashes() on user-supplied shortcode attribute values in the mc_draw_template() function. This function decodes C-style hex escape sequences (such as \\x3c to <) at render time, effectively bypassing WordPress's built-in wp_kses_post() content sanitization that only runs at save time.

The temporal gap between sanitization (save time) and rendering (with stripcslashes() decoding) creates a sanitization bypass that allows attackers to smuggle malicious HTML/JavaScript through encoded escape sequences that appear benign during initial validation.

Root Cause

The root cause is a sanitization timing mismatch. WordPress's wp_kses_post() function sanitizes content when it is saved to the database, removing dangerous HTML tags and attributes. However, the mc_draw_template() function subsequently processes the already-sanitized content with stripcslashes(), which decodes C-style escape sequences. Attackers can encode malicious payloads using hex escape sequences (e.g., \\x3c for < and \\x3e for >) that pass through wp_kses_post() undetected but are decoded into executable HTML/JavaScript at render time.

Attack Vector

The attack requires authenticated access with at least Contributor-level privileges on the WordPress site. An attacker creates or edits content containing the [my_calendar_upcoming] shortcode with a malicious template attribute value. The payload uses C-style hex escape sequences to encode script tags and JavaScript code. When the shortcode is processed, the encoded payload bypasses sanitization at save time but is decoded and rendered as executable script when victims view the page.

The vulnerability is accessible over the network and requires no user interaction beyond simply viewing the affected page. The attack allows scripts to execute in the context of the victim's session, potentially compromising users with higher privileges than the attacker.

Detection Methods for CVE-2026-2355

Indicators of Compromise

  • Presence of unusual hex escape sequences (e.g., \\x3c, \\x3e, \\x22) in post content containing [my_calendar_upcoming] shortcodes
  • User reports of unexpected browser behavior or redirects when viewing calendar pages
  • Database entries in wp_posts table containing encoded script payloads within shortcode attributes
  • JavaScript execution errors in browser consoles related to injected content

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block C-style hex escape sequences in shortcode attributes
  • Perform regular database audits scanning for encoded script patterns in posts using My Calendar shortcodes
  • Enable Content Security Policy (CSP) headers to detect and block inline script execution
  • Monitor server access logs for suspicious patterns of content creation by Contributor-level accounts

Monitoring Recommendations

  • Configure real-time alerting for content modifications containing My Calendar shortcodes
  • Implement integrity monitoring for WordPress post content to detect unauthorized script injections
  • Deploy browser-based XSS detection tools that alert on unexpected script execution
  • Review WordPress audit logs for unusual shortcode usage patterns by lower-privileged users

How to Mitigate CVE-2026-2355

Immediate Actions Required

  • Update the My Calendar plugin to a patched version beyond 3.7.3 immediately
  • Audit existing posts and pages for malicious content containing encoded payloads in [my_calendar_upcoming] shortcodes
  • Review and restrict Contributor-level account access until the patch is applied
  • Implement Content Security Policy headers to limit the impact of any existing XSS payloads

Patch Information

The vulnerability has been addressed in versions after 3.7.3 of the My Calendar plugin. The fix modifies how the mc_draw_template() function handles shortcode attribute values to prevent the decoding of malicious escape sequences. Detailed changeset information is available in the WordPress Changeset Details.

Additional technical details about the vulnerable code paths can be found in the WordPress Plugin Shortcode File and WordPress Plugin Templates File. For complete vulnerability analysis, refer to the Wordfence Vulnerability Report.

Workarounds

  • Temporarily disable the My Calendar plugin until a patched version can be applied
  • Remove or restrict Contributor-level and above accounts that are not essential to site operations
  • Implement strict Content Security Policy headers to block inline script execution
  • Deploy a Web Application Firewall with rules to filter hex escape sequences in POST data
bash
# Example Content Security Policy header configuration for Apache
# Add to .htaccess or httpd.conf to help mitigate XSS impact
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; object-src 'none';"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score6.4

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • WordPress Plugin Shortcode File

  • WordPress Plugin Templates File

  • WordPress Plugin Shortcode File

  • WordPress Plugin Templates File

  • WordPress Changeset Details

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2023-54358: adivaha Travel Plugin XSS Vulnerability

  • CVE-2026-3005: WordPress List Category Posts XSS Flaw

  • CVE-2026-5742: WordPress UsersWP Plugin XSS Vulnerability

  • CVE-2026-4336: WordPress Ultimate FAQ Accordion XSS 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