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-2025-24576

CVE-2025-24576: Landing Page Cat Plugin XSS Vulnerability

CVE-2025-24576 is a reflected cross-site scripting flaw in the Landing Page Cat WordPress plugin that enables attackers to inject malicious scripts. This article covers technical details, affected versions, and mitigation.

Updated: May 11, 2026

CVE-2025-24576 Overview

CVE-2025-24576 is a reflected cross-site scripting (XSS) vulnerability in the fatcatapps Landing Page Cat WordPress plugin. The flaw affects all versions of landing-page-cat up to and including 1.7.7. The vulnerability stems from improper neutralization of user-supplied input during web page generation, classified under [CWE-79].

Attackers can craft malicious URLs that execute arbitrary JavaScript in a victim's browser when the victim clicks the link. Successful exploitation requires user interaction but no authentication. The scope-changed nature of the issue means injected scripts can affect resources beyond the vulnerable component.

Critical Impact

Attackers can execute arbitrary JavaScript in victim browsers, enabling session theft, credential harvesting, and unauthorized actions on behalf of authenticated WordPress users.

Affected Products

  • fatcatapps Landing Page Cat plugin for WordPress
  • All versions through 1.7.7
  • WordPress sites with the landing-page-cat plugin installed and active

Discovery Timeline

  • 2025-02-03 - CVE-2025-24576 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2025-24576

Vulnerability Analysis

The Landing Page Cat plugin fails to sanitize user-controllable input before reflecting it into rendered HTML output. This is a classic reflected XSS pattern where input arrives in an HTTP request parameter and gets echoed back in the response without proper encoding. The vulnerability requires victim interaction, typically by clicking a crafted link.

Because the scope changes during exploitation, injected JavaScript can interact with resources outside the vulnerable plugin context. This includes the broader WordPress admin session if an authenticated administrator triggers the payload. Attackers gain low-impact reads, writes, and availability disruption on confidentiality, integrity, and availability dimensions.

Root Cause

The root cause is missing output encoding and input validation in request handlers within the landing-page-cat plugin. User-supplied parameters are concatenated into HTML responses without HTML entity encoding or contextual escaping. WordPress provides functions like esc_html(), esc_attr(), and wp_kses() that the plugin did not apply consistently to tainted data flows.

Attack Vector

Exploitation occurs over the network. An attacker crafts a URL containing a JavaScript payload as a query parameter pointed at a vulnerable Landing Page Cat endpoint. The attacker distributes the link through phishing emails, social media, or compromised sites. When a victim clicks the link, the plugin reflects the payload into the response, and the browser executes it under the target site's origin.

The vulnerability mechanism is described in the Patchstack advisory for Landing Page Cat. No verified proof-of-concept code has been published, and the issue carries an EPSS probability of 0.044%.

Detection Methods for CVE-2025-24576

Indicators of Compromise

  • HTTP requests to Landing Page Cat plugin endpoints containing <script>, javascript:, onerror=, or onload= tokens in query parameters
  • URL-encoded payload variants such as %3Cscript%3E or %22%3E%3Csvg appearing in web server access logs
  • Referrer headers from external phishing domains pointing at /wp-content/plugins/landing-page-cat/ paths
  • Unexpected outbound requests from user browsers to attacker-controlled domains following plugin page visits

Detection Strategies

  • Inspect web server and WAF logs for reflected XSS signatures targeting plugin parameters
  • Deploy Content Security Policy (CSP) violation reporting to catch inline script execution attempts
  • Monitor browser-side JavaScript errors and unexpected DOM modifications on pages served by the plugin
  • Correlate spikes in 200-response traffic to plugin URLs with suspicious referrers or user agents

Monitoring Recommendations

  • Enable WordPress audit logging to track plugin activity and administrator session anomalies
  • Forward web server logs to a centralized SIEM with rules for common XSS payload patterns
  • Alert on administrator account actions immediately following clicks on external links
  • Periodically scan installed plugins against the WordPress vulnerability database for known issues

How to Mitigate CVE-2025-24576

Immediate Actions Required

  • Identify all WordPress installations running landing-page-cat version 1.7.7 or earlier
  • Deactivate the Landing Page Cat plugin until a patched version is installed
  • Train administrators to avoid clicking unsolicited links pointing at their own WordPress domains
  • Rotate WordPress administrator credentials if exploitation is suspected

Patch Information

At the time of NVD publication, the advisory identifies versions through 1.7.7 as vulnerable. Site operators should consult the Patchstack advisory and the plugin vendor's release notes for the latest fixed version, then upgrade through the WordPress plugin manager.

Workarounds

  • Deploy a web application firewall rule blocking common XSS payloads on requests to plugin endpoints
  • Apply a strict Content Security Policy that disallows inline scripts and untrusted script sources
  • Restrict access to the plugin's pages using IP allowlists or authentication where feasible
  • Remove the plugin entirely if it is not actively required for site functionality
bash
# Example WAF rule fragment blocking script tags in query strings
SecRule ARGS "@rx (?i)(<script|javascript:|onerror=|onload=)" \
    "id:1024576,phase:2,deny,status:403,msg:'Possible XSS targeting landing-page-cat (CVE-2025-24576)'"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechLanding Page Cat

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityLow
  • CWE References
  • CWE-79
  • Technical References
  • Patchstack WordPress Plugin Vulnerability
  • Related CVEs
  • CVE-2025-26992: Landing Page Cat XSS 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