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

CVE-2024-13365: CleanTalk Security & Malware Scan RCE Flaw

CVE-2024-13365 is a remote code execution vulnerability in the CleanTalk Security & Malware Scan WordPress plugin that allows unauthenticated attackers to upload malicious files. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2024-13365 Overview

The Security & Malware scan by CleanTalk plugin for WordPress contains a critical arbitrary file upload vulnerability that enables unauthenticated remote code execution. The flaw exists in the checkUploadedArchive() function, which fails to properly validate and sanitize uploaded .zip archives during malware scanning operations. This allows attackers to upload malicious files to the affected WordPress server without any authentication.

Critical Impact

Unauthenticated attackers can upload arbitrary files to WordPress servers, potentially leading to complete site compromise through remote code execution.

Affected Products

  • CleanTalk Security & Malware Scan plugin for WordPress versions up to and including 2.149

Discovery Timeline

  • 2025-02-12 - CVE-2024-13365 published to NVD
  • 2025-02-25 - Last updated in NVD database

Technical Details for CVE-2024-13365

Vulnerability Analysis

This vulnerability falls under CWE-434 (Unrestricted Upload of File with Dangerous Type), which represents a fundamental failure in file upload security controls. The vulnerability allows unauthenticated attackers to bypass all security checks normally required for file uploads in WordPress.

The irony of this vulnerability is significant—a security plugin designed to protect WordPress sites from malware instead introduces a severe attack vector. The checkUploadedArchive() function processes uploaded .zip archives for malware scanning purposes but extracts the archive contents without sufficient validation, allowing attackers to place arbitrary files on the server filesystem.

This vulnerability requires no authentication and can be exploited remotely over the network with no user interaction required. A successful exploit grants attackers the ability to read, modify, or delete any data accessible to the web server, execute arbitrary code on the server, and potentially pivot to other systems on the network.

Root Cause

The root cause lies in the checkUploadedArchive() function's failure to implement proper security controls when handling uploaded .zip archives. The function extracts archive contents during malware scanning operations without adequately validating the file types within the archive or restricting where files can be extracted. This allows attackers to include executable PHP files or other dangerous file types within a .zip archive, which are then extracted to web-accessible locations on the server.

Attack Vector

The attack leverages the plugin's malware scanning functionality as an entry point. An attacker crafts a malicious .zip archive containing a PHP webshell or other executable payload. By submitting this archive to the vulnerable endpoint, the attacker triggers the checkUploadedArchive() function, which extracts the malicious files to the WordPress server. Once extracted, the attacker can access the uploaded webshell directly via HTTP to execute arbitrary commands on the server.

The attack can be executed entirely without authentication, making it particularly dangerous for any WordPress site running vulnerable versions of this plugin. The network-based attack vector means any internet-facing WordPress installation is at risk.

Detection Methods for CVE-2024-13365

Indicators of Compromise

  • Unexpected .php files appearing in WordPress directories, particularly in wp-content/uploads/ or plugin directories
  • Suspicious .zip file uploads in server access logs targeting CleanTalk plugin endpoints
  • Web server logs showing requests to unfamiliar PHP files that don't match known WordPress or plugin files
  • Unusual outbound network connections from the web server process

Detection Strategies

  • Monitor web server access logs for POST requests to CleanTalk plugin endpoints containing .zip file uploads
  • Implement file integrity monitoring (FIM) to detect unauthorized file creation in WordPress directories
  • Deploy web application firewall (WAF) rules to inspect archive uploads for embedded PHP or executable content
  • Review server-side logs for any file extraction operations performed by the WordPress process

Monitoring Recommendations

  • Enable comprehensive logging for the WordPress wp-content/ directory and all plugin directories
  • Configure alerts for any new PHP file creation outside of authorized deployment processes
  • Monitor for webshell signatures and behaviors including command execution patterns
  • Implement network segmentation monitoring to detect lateral movement attempts from compromised web servers

How to Mitigate CVE-2024-13365

Immediate Actions Required

  • Update the CleanTalk Security & Malware Scan plugin to a version newer than 2.149 immediately
  • Review WordPress file directories for any unauthorized files that may indicate prior compromise
  • If unable to update immediately, disable or remove the CleanTalk Security & Malware Scan plugin until patching is complete
  • Conduct a thorough security audit of the WordPress installation to identify any indicators of compromise

Patch Information

CleanTalk has released a security update addressing this vulnerability. The fix is available in the WordPress Security Changeset. Site administrators should update to the latest version of the plugin through the WordPress admin dashboard or by manually downloading and installing the patched version from the WordPress plugin repository.

For detailed vulnerability information, refer to the Wordfence Vulnerability Report.

Workarounds

  • Temporarily disable or uninstall the CleanTalk Security & Malware Scan plugin if immediate patching is not possible
  • Implement web application firewall rules to block .zip file uploads to CleanTalk plugin endpoints
  • Restrict access to WordPress admin and plugin directories at the web server level using IP allowlisting
  • Enable read-only permissions on WordPress plugin directories as a temporary measure to prevent file writes
bash
# Temporarily disable plugin via WordPress CLI
wp plugin deactivate security-malware-firewall

# After updating, re-enable the plugin
wp plugin activate security-malware-firewall

# Verify plugin version after update
wp plugin list --name=security-malware-firewall --fields=name,version,status

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechCleantalk Security And Malware Scan

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability3.74%

  • 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-434
  • Technical References
  • Wordfence Vulnerability Report
  • Vendor Resources
  • WordPress Security Changeset
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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