CVE-2025-60189

7.5 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP include/require statements. It affects WordPress sites using the PoloPag Pix Automático para Woocommerce plugin version 2.0.9 and earlier. Attackers can potentially read sensitive files or execute code.

💻 Affected Systems

Products:
  • PoloPag Pix Automático para Woocommerce WordPress plugin
Versions: <= 2.0.9
Operating Systems: All operating systems running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with WooCommerce and the vulnerable plugin installed.

⚠️ 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

Remote code execution leading to complete server compromise, data theft, and website defacement.

🟠

Likely Case

Local file inclusion allowing reading of sensitive configuration files, database credentials, or other server files.

🟢

If Mitigated

Limited information disclosure if file permissions are properly configured and sensitive files are protected.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

PHP local file inclusion vulnerabilities are commonly exploited and weaponized quickly.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: > 2.0.9

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/wc-polo-payments/vulnerability/wordpress-polopag-pix-automatico-para-woocommerce-plugin-2-0-9-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins. 3. Find 'PoloPag Pix Automático para Woocommerce'. 4. Update to latest version. 5. Verify update completed successfully.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the plugin until patched version is available

wp plugin deactivate wc-polo-payments

Restrict file access

linux

Configure web server to restrict access to sensitive directories

# Add to .htaccess for Apache:
<FilesMatch "\.(php|inc|conf|ini)$">
Order Deny,Allow
Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict plugin access to authenticated users only if possible

🔍 How to Verify

Check if Vulnerable:

Check WordPress plugin version in admin panel or via wp-cli: wp plugin get wc-polo-payments --field=version

Check Version:

wp plugin get wc-polo-payments --field=version

Verify Fix Applied:

Confirm plugin version is greater than 2.0.9 and test file inclusion attempts return errors

📡 Detection & Monitoring

Log Indicators:

  • Unusual file path patterns in access logs
  • Multiple requests to plugin endpoints with file parameters
  • Errors containing 'include' or 'require' with user-supplied paths

Network Indicators:

  • HTTP requests with file path parameters to plugin endpoints
  • Unusual file extensions in URLs

SIEM Query:

source="web_access_logs" AND (uri="*wc-polo-payments*" AND (param="*file*" OR param="*path*" OR param="*include*"))

🔗 References

📤 Share & Export