CVE-2025-60193

7.5 HIGH

📋 TL;DR

This CVE describes a PHP Local File Inclusion vulnerability in the Premmerce User Roles WordPress plugin. Attackers can exploit improper filename control in include/require statements to read sensitive files on the server. WordPress sites using vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • Premmerce User Roles WordPress Plugin
Versions: All versions up to and including 1.0.13
Operating Systems: Any OS running PHP and WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin enabled.

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

Full server compromise through reading sensitive files like /etc/passwd, database credentials, or executing arbitrary code via PHP wrappers.

🟠

Likely Case

Information disclosure of sensitive server files, potentially leading to credential theft or further exploitation.

🟢

If Mitigated

Limited impact if file permissions are restrictive and PHP configurations disable dangerous functions.

🌐 Internet-Facing: HIGH - WordPress plugins are typically internet-facing and this vulnerability requires no authentication.
🏢 Internal Only: MEDIUM - Internal systems could still be vulnerable if the plugin is installed.

🎯 Exploit Status

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

Local File Inclusion vulnerabilities are commonly exploited and tooling exists for automated exploitation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.0.13

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/premmerce-user-roles/vulnerability/wordpress-premmerce-user-roles-plugin-1-0-13-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Premmerce User Roles' and update to latest version. 4. 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 premmerce-user-roles

Restrict PHP File Functions

all

Configure PHP to disable dangerous functions and restrict file access.

Add to php.ini: disable_functions = allow_url_fopen,allow_url_include

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block LFI patterns
  • Restrict file system permissions and implement strict access controls

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Premmerce User Roles version. If version is 1.0.13 or lower, system is vulnerable.

Check Version:

wp plugin get premmerce-user-roles --field=version

Verify Fix Applied:

Verify plugin version is higher than 1.0.13 in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file access patterns in PHP error logs
  • HTTP requests with suspicious file path parameters

Network Indicators:

  • HTTP requests containing file path traversal patterns (../, /etc/passwd, etc.)

SIEM Query:

web_access_logs WHERE url CONTAINS 'premmerce-user-roles' AND (url CONTAINS '../' OR url CONTAINS '/etc/' OR url CONTAINS 'php://')

🔗 References

📤 Share & Export