A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-64353

CVE-2025-64353: Polylang Object Injection Vulnerability

CVE-2025-64353 is an object injection flaw in the Polylang WordPress plugin caused by deserialization of untrusted data. Versions up to 3.7.3 are affected. This article covers technical details and mitigation steps.

Published: May 26, 2026

CVE-2025-64353 Overview

CVE-2025-64353 is a deserialization of untrusted data vulnerability in the Polylang WordPress plugin by Chouby. The flaw affects all versions of Polylang up to and including 3.7.3 and enables PHP Object Injection. An authenticated attacker with low privileges can submit crafted serialized data over the network to trigger unsafe deserialization. Successful exploitation can lead to arbitrary code execution, data tampering, or denial of service on the affected WordPress installation. The vulnerability maps to [CWE-502: Deserialization of Untrusted Data].

Critical Impact

Authenticated attackers can inject malicious PHP objects to compromise confidentiality, integrity, and availability of WordPress sites running Polylang 3.7.3 or earlier.

Affected Products

  • Chouby Polylang plugin for WordPress
  • Polylang versions from n/a through 3.7.3
  • WordPress sites with the vulnerable Polylang plugin installed and active

Discovery Timeline

  • 2025-10-31 - CVE-2025-64353 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-64353

Vulnerability Analysis

The vulnerability stems from Polylang processing serialized PHP data from untrusted sources without sufficient validation. When PHP's unserialize() function operates on attacker-controlled input, it instantiates arbitrary classes available within the WordPress runtime. Attackers chain these classes through their magic methods such as __wakeup(), __destruct(), or __toString() to construct POP (Property-Oriented Programming) gadgets. The chained gadgets can execute arbitrary code, read or write files, or manipulate database content within the WordPress environment.

The attack requires network access and low-privilege authentication. No user interaction is needed, and the scope remains unchanged. Impact on confidentiality, integrity, and availability is high.

Root Cause

The root cause is unsafe deserialization of attacker-supplied input within Polylang's request handling logic. The plugin invokes deserialization routines on data that originates from HTTP parameters without enforcing strict type checks, signature validation, or allowlists of permitted classes. This pattern [CWE-502] permits arbitrary object instantiation when PHP gadget chains exist in the application or its dependencies.

Attack Vector

An attacker authenticates to the WordPress instance with a low-privilege account such as Subscriber or Contributor. The attacker then submits a request containing a crafted serialized PHP payload to a Polylang endpoint that performs unserialize() on the input. The deserialization triggers magic methods in chained classes, leading to code execution within the web server process. Refer to the Patchstack WordPress Vulnerability Report for technical details.

Detection Methods for CVE-2025-64353

Indicators of Compromise

  • Unexpected outbound network connections from the WordPress web server process following authenticated plugin requests.
  • Web server logs showing serialized PHP payloads (strings beginning with O:, a:, or s:) submitted to Polylang endpoints by low-privilege accounts.
  • New or modified PHP files in the WordPress installation directory, particularly in wp-content/uploads/ or plugin directories.
  • Creation of unauthorized administrator accounts or unexpected changes to wp_options rows.

Detection Strategies

  • Inspect HTTP request bodies and query strings for serialized PHP object signatures targeting Polylang URLs or AJAX actions.
  • Correlate authenticated session activity with file system writes or process spawning by the PHP-FPM or Apache worker process.
  • Monitor WordPress audit logs for anomalous activity from low-privilege accounts interacting with translation or language-switching features.

Monitoring Recommendations

  • Enable verbose access logging on the WordPress reverse proxy and forward logs to a centralized analytics platform for query-time inspection.
  • Track installed Polylang versions across the estate and alert when version 3.7.3 or earlier remains in production.
  • Baseline normal plugin AJAX traffic and alert on requests containing serialized object patterns.

How to Mitigate CVE-2025-64353

Immediate Actions Required

  • Update Polylang to a fixed release published after 3.7.3 on every WordPress site in the environment.
  • Audit user accounts and revoke any unauthorized administrator or editor roles created since the plugin was installed.
  • Review file integrity within wp-content/plugins/polylang/ and the broader WordPress installation for tampering.
  • Rotate WordPress secret keys defined in wp-config.php and reset passwords for privileged accounts.

Patch Information

Apply the vendor-supplied patch by upgrading Polylang past version 3.7.3. Refer to the Patchstack WordPress Vulnerability Report for the current fixed release and changelog entries.

Workarounds

  • Deactivate and remove the Polylang plugin until the patched version is deployed if the site can operate without multilingual support.
  • Restrict registration and reduce default user role privileges to limit who can reach authenticated plugin endpoints.
  • Deploy a Web Application Firewall (WAF) rule that blocks requests containing PHP serialized object patterns to WordPress endpoints.
  • Disable PHP functions used in common deserialization gadget chains where the application does not require them.
bash
# Configuration example
# Upgrade Polylang via WP-CLI to the patched release
wp plugin update polylang --version=<patched-version>

# Verify installed version after update
wp plugin get polylang --field=version

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechPolylang

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.12%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • Patchstack WordPress Vulnerability Report
  • Latest CVEs
  • CVE-2026-9813: FlowIntel SSRF Vulnerability

  • CVE-2026-4377: D-Link DWR-X1820 Auth Bypass Vulnerability

  • CVE-2026-47074: ex_aws_sns Auth Bypass Vulnerability

  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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