CVE-2025-10938

6.5 MEDIUM

📋 TL;DR

The UiPress Lite WordPress plugin has a vulnerability that allows authenticated attackers with subscriber-level access or higher to extract sensitive user data including password hashes and emails. This affects all versions up to 3.5.08. The exposed information could enable account takeover attacks.

💻 Affected Systems

Products:
  • UiPress Lite WordPress Plugin
Versions: All versions up to and including 3.5.08
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with UiPress Lite plugin enabled and at least one user with subscriber-level access.

⚠️ 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 gain access to password hashes enabling offline cracking, compromise administrator accounts, and take over the entire WordPress site.

🟠

Likely Case

Attackers extract user emails and password hashes, potentially compromising multiple user accounts through password cracking or credential stuffing attacks.

🟢

If Mitigated

With proper access controls and monitoring, attackers may still extract data but would be detected before causing significant damage.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires authenticated access but only at subscriber level, which is the lowest WordPress user role. The vulnerability is in a public AJAX endpoint with missing capability checks.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.5.09 or later

Vendor Advisory: https://wordpress.org/plugins/uipress-lite/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find UiPress Lite and click 'Update Now'. 4. Verify the plugin version is 3.5.09 or higher.

🔧 Temporary Workarounds

Disable UiPress Lite Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate uipress-lite

Restrict AJAX Endpoint Access

all

Add capability checks to block unauthorized access to the vulnerable endpoint

Add 'current_user_can' check in uip_process_block_query function

🧯 If You Can't Patch

  • Remove subscriber-level access from all untrusted users
  • Implement web application firewall rules to block requests to the vulnerable AJAX endpoint

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for UiPress Lite version 3.5.08 or lower

Check Version:

wp plugin get uipress-lite --field=version

Verify Fix Applied:

Verify UiPress Lite plugin version is 3.5.09 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • Unusual AJAX requests to /wp-admin/admin-ajax.php with action=uip_process_block_query from subscriber-level users
  • Multiple failed login attempts following data extraction

Network Indicators:

  • HTTP POST requests to admin-ajax.php with uip_process_block_query parameter from non-admin IPs

SIEM Query:

source="wordpress.log" AND "admin-ajax.php" AND "uip_process_block_query" AND user_role="subscriber"

🔗 References

📤 Share & Export