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

CVE-2025-12168: Phrase TMS WordPress Auth Bypass Flaw

CVE-2025-12168 is an authentication bypass vulnerability in Phrase TMS Integration for WordPress that allows authenticated attackers to delete log files. This article covers technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2025-12168 Overview

The Phrase TMS Integration for WordPress plugin is vulnerable to unauthorized modification of data due to a missing capability check on the wp_ajax_delete_log AJAX endpoint. This Broken Access Control vulnerability (CWE-862) affects all versions up to and including 4.7.5, allowing authenticated attackers with Subscriber-level access or higher to delete log files without proper authorization.

Critical Impact

Authenticated users with minimal privileges (Subscriber role) can delete plugin log files, potentially covering tracks of malicious activity or disrupting audit trails on affected WordPress installations.

Affected Products

  • Phrase TMS Integration for WordPress plugin versions up to and including 4.7.5
  • WordPress installations running vulnerable plugin versions
  • Sites allowing user registration with Subscriber-level access

Discovery Timeline

  • 2026-01-17 - CVE-2025-12168 published to NVD
  • 2026-01-17 - Last updated in NVD database

Technical Details for CVE-2025-12168

Vulnerability Analysis

This vulnerability stems from a Missing Authorization weakness (CWE-862) in the Phrase TMS Integration plugin's AJAX handling. The wp_ajax_delete_log endpoint fails to implement proper capability checks before executing log deletion operations. In WordPress, AJAX actions registered with the wp_ajax_ prefix are accessible to any authenticated user by default, making capability verification essential for privilege-sensitive operations.

The vulnerability allows attackers with low-privilege accounts (Subscriber level and above) to invoke the log deletion functionality that should be restricted to administrators. This represents a classic broken access control scenario where authentication is verified but authorization is not enforced.

Root Cause

The root cause is the absence of a WordPress capability check function (such as current_user_can()) within the AJAX handler for the wp_ajax_delete_log action. Without this authorization gate, any authenticated user can access the endpoint regardless of their assigned role or capabilities.

WordPress provides role-based access control through its capabilities system, but plugin developers must explicitly implement these checks. The vulnerable code processes log deletion requests without verifying that the requesting user has administrative privileges.

Attack Vector

An authenticated attacker with Subscriber-level access can exploit this vulnerability through the following mechanism:

  1. The attacker creates or compromises a WordPress account with minimal privileges (Subscriber role)
  2. The attacker crafts an AJAX POST request to the admin-ajax.php endpoint with the action parameter set to delete_log
  3. The vulnerable endpoint processes the request without checking user capabilities
  4. Log files are deleted, potentially removing evidence of malicious activity or plugin operations

The attack requires network access to the WordPress installation and valid authentication credentials for any registered user role. No additional user interaction is required beyond the initial request.

Detection Methods for CVE-2025-12168

Indicators of Compromise

  • Unexpected deletions of plugin log files in the Phrase TMS Integration plugin directory
  • AJAX requests to admin-ajax.php with action=delete_log from non-administrative users
  • Missing or truncated log entries in the plugin's logging system
  • Suspicious activity from Subscriber-level accounts accessing administrative AJAX endpoints

Detection Strategies

  • Monitor WordPress AJAX requests for delete_log action calls from low-privilege user accounts
  • Implement web application firewall (WAF) rules to detect unauthorized access patterns to sensitive AJAX endpoints
  • Review access logs for admin-ajax.php requests with suspicious action parameters from authenticated sessions
  • Enable verbose logging to capture authorization failures and unexpected endpoint access attempts

Monitoring Recommendations

  • Configure centralized logging for WordPress installations to detect log file manipulation
  • Set up alerts for file system changes in plugin directories, particularly log file deletions
  • Monitor user activity logs for Subscriber-level accounts performing administrative actions
  • Implement integrity monitoring for plugin log files to detect unauthorized modifications or deletions

How to Mitigate CVE-2025-12168

Immediate Actions Required

  • Update the Phrase TMS Integration plugin to the latest patched version immediately
  • Review user accounts and remove unnecessary Subscriber-level access where possible
  • Audit recent activity logs to identify potential exploitation attempts
  • Consider temporarily disabling user registration if not required for site operations

Patch Information

A security patch addressing this vulnerability is available through the official WordPress plugin repository. Review the WordPress Plugin Change Log for specific code changes. Additional vulnerability details are available in the Wordfence Vulnerability Report.

Administrators should update to a version newer than 4.7.5 which includes proper capability checks on the affected AJAX endpoint.

Workarounds

  • Restrict user registration to trusted users only until the plugin is updated
  • Implement additional access controls via security plugins that can filter AJAX requests
  • Use a web application firewall to block unauthorized requests to the delete_log AJAX action
  • Consider temporarily deactivating the plugin if log integrity is critical and updates cannot be applied immediately
bash
# WordPress CLI command to update the plugin
wp plugin update memsource-connector

# Verify the installed version after update
wp plugin list --name=memsource-connector --fields=name,version,update_version

# List users with Subscriber role for audit
wp user list --role=subscriber --fields=ID,user_login,user_email

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • WordPress Plugin Change Log

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-2519: Bookly WordPress Plugin Auth Bypass Flaw

  • CVE-2026-4326: Vertex Addons Auth Bypass Vulnerability

  • CVE-2025-14944: Backup Migration Plugin Auth Bypass Flaw

  • CVE-2026-3646: WordPress LTL Plugin Auth Bypass 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