CVE-2025-12168

4.3 MEDIUM

📋 TL;DR

The Phrase TMS Integration for WordPress plugin has an authorization vulnerability that allows authenticated users with Subscriber-level access or higher to delete log files via the 'wp_ajax_delete_log' AJAX endpoint. This affects all WordPress sites using plugin versions up to and including 4.7.5.

💻 Affected Systems

Products:
  • Phrase TMS Integration for WordPress
Versions: All versions up to and including 4.7.5
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin enabled. Any authenticated user (Subscriber role or higher) can exploit.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could delete audit logs to cover tracks after other attacks, potentially enabling undetected persistence or data exfiltration.

🟠

Likely Case

Malicious users deleting operational logs to hide suspicious activities or disrupt monitoring capabilities.

🟢

If Mitigated

Limited to log deletion only, no data theft or system compromise if proper access controls are implemented.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires authenticated access but is technically simple via crafted AJAX requests.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.7.6 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3426034%40memsource-connector&new=3426034%40memsource-connector&sfp_email=&sfph_mail=

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Phrase TMS Integration' and click 'Update Now'. 4. Verify version is 4.7.6 or higher.

🔧 Temporary Workarounds

Disable vulnerable endpoint via .htaccess

linux

Block access to the vulnerable AJAX endpoint at web server level

# Add to .htaccess in WordPress root directory
RewriteEngine On
RewriteCond %{QUERY_STRING} action=delete_log [NC]
RewriteRule ^wp-admin/admin-ajax\.php$ - [F,L]

Temporarily disable plugin

all

Deactivate the vulnerable plugin until patched

wp plugin deactivate memsource-connector

🧯 If You Can't Patch

  • Restrict user registration and review existing user accounts for suspicious activity
  • Implement additional logging at the web server level to capture all delete attempts

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for 'Phrase TMS Integration' version ≤4.7.5

Check Version:

wp plugin list --name='memsource-connector' --field=version

Verify Fix Applied:

Confirm plugin version is ≥4.7.6 in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual DELETE requests to /wp-admin/admin-ajax.php with action=delete_log
  • Missing or truncated plugin log files

Network Indicators:

  • POST requests to /wp-admin/admin-ajax.php with action=delete_log parameter from non-admin users

SIEM Query:

source="web_access_logs" AND uri_path="/wp-admin/admin-ajax.php" AND query_string="*action=delete_log*" AND user_agent!="*wp-admin*"

🔗 References

📤 Share & Export