CVE-2025-24552

5.3 MEDIUM

📋 TL;DR

This CVE describes an information disclosure vulnerability in the Paytium WordPress plugin where error messages reveal sensitive information like full server paths. Attackers can exploit this to gather reconnaissance data about the server environment. All WordPress sites using Paytium versions up to 4.4.11 are affected.

💻 Affected Systems

Products:
  • Paytium WordPress Plugin
Versions: n/a through 4.4.11
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with Paytium plugin installed and activated.

⚠️ 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 obtain full server path information, which could be combined with other vulnerabilities for directory traversal, file inclusion attacks, or targeted exploitation of other weaknesses.

🟠

Likely Case

Attackers gather reconnaissance data about server structure and WordPress installation details, facilitating more targeted attacks.

🟢

If Mitigated

Limited information disclosure with no direct system compromise, but still reveals some server configuration details.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Exploitation typically involves triggering error conditions to reveal sensitive information in error messages.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.4.12 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/paytium/vulnerability/wordpress-paytium-plugin-4-4-11-full-path-disclosure-fpd-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find Paytium and click 'Update Now'. 4. Alternatively, download version 4.4.12+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable Error Display

all

Configure WordPress to not display detailed error messages to users

Add to wp-config.php: define('WP_DEBUG', false);
Add to wp-config.php: define('WP_DEBUG_DISPLAY', false);

Temporarily Deactivate Plugin

linux

Disable Paytium plugin until patched

wp plugin deactivate paytium

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block requests that trigger error conditions
  • Restrict access to affected WordPress installation using IP whitelisting or authentication

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Paytium version. If version is 4.4.11 or earlier, you are vulnerable.

Check Version:

wp plugin list --name=paytium --field=version

Verify Fix Applied:

Confirm Paytium version is 4.4.12 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual requests to Paytium endpoints that trigger errors
  • HTTP requests with malformed parameters targeting Paytium

Network Indicators:

  • Increased traffic to /wp-content/plugins/paytium/ paths
  • Requests with error-inducing parameters

SIEM Query:

source="web_server_logs" AND (uri_path="/wp-content/plugins/paytium/" OR user_agent CONTAINS "scanner") AND status_code>=400

🔗 References

📤 Share & Export