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-2024-13410

CVE-2024-13410: WordPress Plugins Object Injection Flaw

CVE-2024-13410 is a PHP Object Injection vulnerability in CozyStay and TinySalt WordPress plugins that allows unauthenticated attackers to inject malicious objects. This article covers technical details, affected versions, and mitigation.

Published: April 8, 2026

CVE-2024-13410 Overview

CVE-2024-13410 is a PHP Object Injection vulnerability affecting the CozyStay and TinySalt plugins for WordPress. The vulnerability exists in all versions of CozyStay up to and including 1.7.0, and all versions of TinySalt up to and including 3.9.0. The flaw stems from insecure deserialization of untrusted input in the ajax_handler function, allowing unauthenticated attackers to inject arbitrary PHP objects into the application.

Critical Impact

Unauthenticated attackers can inject PHP objects that, when combined with an existing POP (Property Oriented Programming) chain from another installed plugin or theme, may enable arbitrary file deletion, sensitive data retrieval, or remote code execution.

Affected Products

  • CozyStay WordPress Theme/Plugin (versions up to and including 1.7.0)
  • TinySalt WordPress Theme/Plugin (versions up to and including 3.9.0)
  • WordPress sites with these plugins and additional POP chain-providing components

Discovery Timeline

  • 2025-03-19 - CVE CVE-2024-13410 published to NVD
  • 2025-03-19 - Last updated in NVD database

Technical Details for CVE-2024-13410

Vulnerability Analysis

This vulnerability is classified as Insecure Deserialization (CWE-502). The affected plugins fail to properly validate or sanitize serialized data before passing it to PHP's deserialization functions within the ajax_handler function. When PHP deserializes attacker-controlled data, it reconstructs objects and automatically invokes magic methods such as __wakeup(), __destruct(), or __toString().

The critical aspect of this vulnerability is that it requires no authentication to exploit. An attacker can send malicious serialized payloads directly to the vulnerable AJAX endpoint. While the vulnerable plugins themselves do not contain a Property Oriented Programming (POP) chain, the presence of a POP chain in any other installed WordPress plugin or theme can be leveraged to achieve significant impact including file deletion, data exfiltration, or code execution.

Root Cause

The root cause is improper input validation in the ajax_handler function, which accepts and deserializes user-supplied data without verification. PHP's unserialize() function, when applied to untrusted input, allows attackers to instantiate arbitrary objects with controlled properties. The absence of input sanitization or allowlisting of expected object types creates the deserialization vulnerability.

Attack Vector

The attack vector is network-based and requires no user interaction or authentication. An attacker can craft a malicious HTTP request containing a serialized PHP payload targeting the AJAX handler endpoint. The payload would contain a serialized object designed to exploit a POP chain present on the target WordPress installation.

The exploitation flow involves:

  1. Identifying a vulnerable WordPress site running CozyStay or TinySalt
  2. Discovering available POP chains from other installed plugins/themes
  3. Crafting a serialized payload that chains gadgets to achieve the desired outcome
  4. Sending the malicious payload to the ajax_handler endpoint
  5. The server deserializes the payload, triggering the POP chain execution

Detection Methods for CVE-2024-13410

Indicators of Compromise

  • Unexpected AJAX requests to CozyStay or TinySalt plugin endpoints containing serialized PHP data
  • Web server logs showing POST requests with base64-encoded or serialized object strings in request bodies
  • Unusual file system activity such as unexpected file deletions or modifications
  • PHP error logs indicating failed deserialization attempts or unexpected object instantiation

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect serialized PHP objects in HTTP requests (patterns like O: followed by numeric values)
  • Monitor WordPress AJAX endpoints for suspicious payloads containing serialized data structures
  • Review web server access logs for anomalous POST requests to plugin-specific AJAX handlers
  • Deploy intrusion detection systems (IDS) with signatures for PHP object injection attacks

Monitoring Recommendations

  • Enable verbose logging on WordPress installations to capture AJAX request details
  • Configure file integrity monitoring on critical WordPress directories and files
  • Set up alerting for unexpected PHP process behaviors or file system operations
  • Monitor for database queries or file operations originating from deserialization contexts

How to Mitigate CVE-2024-13410

Immediate Actions Required

  • Update CozyStay plugin to a version newer than 1.7.0 that addresses this vulnerability
  • Update TinySalt plugin to a version newer than 3.9.0 that addresses this vulnerability
  • Audit installed plugins and themes for known POP chains that could be leveraged in exploitation
  • Consider temporarily disabling the affected plugins if immediate patching is not possible

Patch Information

Security patches have been released by the plugin vendors. Refer to the ThemeForest CozyStay Changelog and ThemeForest TinySalt Changelog for the latest patched versions. Additional technical details are available in the Wordfence Vulnerability Report.

Workarounds

  • Implement WAF rules to block requests containing serialized PHP objects to WordPress AJAX endpoints
  • Restrict access to WordPress admin and AJAX functionality through IP allowlisting where feasible
  • Remove unnecessary plugins and themes that may contain POP chains to reduce attack surface
  • Consider implementing a security plugin that monitors and blocks suspicious deserialization attempts
bash
# Example: Block serialized PHP object patterns in Apache .htaccess
# Add to WordPress root .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} (O:\d+:) [NC,OR]
RewriteCond %{REQUEST_BODY} (O:\d+:) [NC]
RewriteRule .* - [F,L]
</IfModule>

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechWordpress

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability2.26%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • ThemeForest CozyStay Changelog

  • ThemeForest TinySalt Changelog

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-4136: WordPress Membership Plugin Redirect Flaw

  • CVE-2026-2599: WordPress Database Plugin Object Injection

  • CVE-2024-10938: OVRI Payment WordPress Malicious Code

  • CVE-2026-1369: Conditional CAPTCHA Open Redirect 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