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

CVE-2026-1127: Timeline Event History Plugin XSS Flaw

CVE-2026-1127 is a reflected cross-site scripting vulnerability in the Timeline Event History plugin for WordPress that allows attackers to inject malicious scripts. This article covers technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2026-1127 Overview

The Timeline Event History plugin for WordPress is vulnerable to Reflected Cross-Site Scripting (XSS) via the id parameter in all versions up to, and including, 3.2. This vulnerability exists due to insufficient input sanitization and output escaping within the plugin's code. Unauthenticated attackers can exploit this flaw to inject arbitrary web scripts into pages, which execute when a victim user is tricked into clicking a malicious link.

Critical Impact

Attackers can steal session cookies, hijack user accounts, redirect users to malicious websites, or perform actions on behalf of authenticated WordPress administrators without their consent.

Affected Products

  • Timeline Event History plugin for WordPress versions up to and including 3.2
  • WordPress sites utilizing the Timeline Event History plugin

Discovery Timeline

  • 2026-01-24 - CVE-2026-1127 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-1127

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Improper Neutralization of Input During Web Page Generation), commonly known as Cross-Site Scripting. The flaw resides in how the Timeline Event History plugin handles the id parameter without proper input validation and output encoding.

When user-supplied data is passed through the id parameter, the plugin fails to adequately sanitize the input before reflecting it back in the HTML response. This allows attackers to craft malicious URLs containing JavaScript payloads that execute in the context of the victim's browser session when the link is clicked.

The vulnerable code can be found in the plugin's field builder class at includes/admin/class-timeline-wp-field-builder.php around line 540, where the id parameter is processed without sufficient escaping mechanisms.

Root Cause

The root cause of this vulnerability is insufficient input sanitization and output escaping in the Timeline Event History WordPress plugin. The plugin directly incorporates user-controlled input from the id parameter into the HTML output without applying proper encoding functions such as esc_attr(), esc_html(), or wp_kses(). This oversight allows script injection through reflected user input.

Attack Vector

This is a network-based attack requiring user interaction. The attacker must craft a malicious URL containing JavaScript code in the id parameter and convince a target user (preferably a WordPress administrator) to click the link. The attack scenario typically involves:

  1. The attacker identifies a WordPress site using the vulnerable Timeline Event History plugin
  2. A malicious URL is crafted with a JavaScript payload embedded in the id parameter
  3. The link is distributed via phishing email, social media, or other social engineering techniques
  4. When the victim clicks the link, the malicious script executes in their browser
  5. The attacker can then steal session tokens, perform CSRF attacks, or redirect users to malicious sites

For technical details on the vulnerable code, see the WordPress Plugin File Reference.

Detection Methods for CVE-2026-1127

Indicators of Compromise

  • Unusual URL patterns in web server logs containing script tags or JavaScript event handlers in the id parameter
  • Browser-based security alerts or XSS filter triggers from users accessing Timeline Event History plugin pages
  • Unexpected redirects or pop-ups reported by users when interacting with timeline features
  • Session cookie theft or unauthorized account access following user interaction with suspicious links

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block reflected XSS patterns in URL parameters
  • Monitor web server access logs for requests containing encoded JavaScript payloads such as <script>, javascript:, or event handlers like onerror, onload
  • Deploy endpoint detection solutions to identify browser-based script injection attempts
  • Configure Content Security Policy (CSP) headers to mitigate the impact of successful XSS exploitation

Monitoring Recommendations

  • Enable detailed logging for all requests to WordPress admin pages and plugin endpoints
  • Set up alerts for anomalous patterns in the id parameter across Timeline Event History plugin requests
  • Monitor for unauthorized session activity following user interactions with external links
  • Review browser console errors and security warnings in development/staging environments

How to Mitigate CVE-2026-1127

Immediate Actions Required

  • Update the Timeline Event History plugin to a patched version as soon as one becomes available
  • Temporarily disable the Timeline Event History plugin if it is not critical to site operations
  • Implement a Web Application Firewall with XSS protection rules to filter malicious requests
  • Educate WordPress administrators about phishing risks and suspicious link handling

Patch Information

Organizations should monitor the official WordPress plugin repository and the Wordfence Vulnerability Report for updates regarding a security patch for Timeline Event History plugin versions 3.2 and below.

Workarounds

  • Restrict access to the WordPress admin area by IP address whitelist until a patch is available
  • Deploy a WAF rule to sanitize or block requests containing script-related patterns in the id parameter
  • Implement Content Security Policy headers to prevent inline script execution
  • Consider using an alternative timeline plugin that does not have known security vulnerabilities
bash
# Example WAF rule for ModSecurity to block XSS in id parameter
SecRule ARGS:id "@rx (?i)(<script|javascript:|on\w+\s*=)" \
    "id:1001,phase:2,deny,status:403,msg:'Potential XSS in id parameter'"

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.1

  • EPSS Probability0.07%

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

  • 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