CVE-2025-64638

5.3 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the OnPay.io for WooCommerce plugin that allows attackers to exploit incorrectly configured access control security levels. It affects WordPress sites using the OnPay.io payment gateway plugin, potentially allowing unauthorized access to functionality. All versions up to and including 1.0.47 are vulnerable.

💻 Affected Systems

Products:
  • OnPay.io for WooCommerce
Versions: n/a through <= 1.0.47
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with WooCommerce and the OnPay.io 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 could manipulate payment processing, access sensitive transaction data, or modify plugin settings to redirect payments or steal customer payment information.

🟠

Likely Case

Unauthorized users could access administrative functions of the payment plugin, potentially viewing transaction details or modifying payment configurations.

🟢

If Mitigated

With proper access controls and authentication mechanisms in place, only authorized administrators can access payment processing functions.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires understanding of WordPress/WooCommerce plugin structure but doesn't require advanced technical skills.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: >1.0.47

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/onpay-io-for-woocommerce/vulnerability/wordpress-onpay-io-for-woocommerce-plugin-1-0-47-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'OnPay.io for WooCommerce'. 4. Click 'Update Now' if update available. 5. Alternatively, download latest version from WordPress repository and replace plugin files.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate onpay-io-for-woocommerce

Restrict Access

linux

Implement IP whitelisting for WordPress admin access

# Add to .htaccess for Apache: Order Deny,Allow
Deny from all
Allow from 192.168.1.0/24
# Add to nginx config: allow 192.168.1.0/24; deny all;

🧯 If You Can't Patch

  • Implement strict network segmentation to isolate the WordPress instance
  • Enable detailed logging and monitoring for unauthorized access attempts to payment endpoints

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > OnPay.io for WooCommerce version. If version is 1.0.47 or lower, you are vulnerable.

Check Version:

wp plugin get onpay-io-for-woocommerce --field=version

Verify Fix Applied:

Verify plugin version is greater than 1.0.47 in WordPress admin panel and test payment functionality works correctly.

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized access attempts to /wp-content/plugins/onpay-io-for-woocommerce/ endpoints
  • Unusual POST requests to payment processing URLs from non-admin users

Network Indicators:

  • HTTP requests to plugin admin endpoints from unauthorized IP addresses
  • Unusual traffic patterns to payment callback URLs

SIEM Query:

source="wordpress.log" AND (uri_path="/wp-content/plugins/onpay-io-for-woocommerce/*" AND user_role!="administrator")

🔗 References

📤 Share & Export