CVE-2025-67524

9.8 CRITICAL

📋 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 Jobmonster Elementor Addon plugin version 1.1.4 and earlier. Attackers can potentially read sensitive files or execute arbitrary code.

💻 Affected Systems

Products:
  • NooTheme Jobmonster Elementor Addon (jobmonster-addon)
Versions: All versions up to and including 1.1.4
Operating Systems: All operating systems running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with the vulnerable 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

Full server compromise leading to data theft, ransomware deployment, or complete site takeover through remote code execution.

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials) leading to further attacks or data exfiltration.

🟢

If Mitigated

Limited file read access if proper file permissions and web server configurations restrict access to sensitive directories.

🌐 Internet-Facing: HIGH - WordPress sites are typically internet-facing, making them directly accessible to attackers.
🏢 Internal Only: MEDIUM - Internal WordPress sites could still be targeted by insider threats or compromised internal systems.

🎯 Exploit Status

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

Local file inclusion vulnerabilities are commonly exploited and weaponization is likely given the high CVSS score and public disclosure.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.1.5 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/jobmonster-addon/vulnerability/wordpress-jobmonster-elementor-addon-plugin-1-1-4-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 'Jobmonster Elementor Addon'. 4. Click 'Update Now' if update is available. 5. If no update appears, manually download version 1.1.5+ from WordPress repository and replace plugin files.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate the Jobmonster Elementor Addon plugin until patched

wp plugin deactivate jobmonster-addon

Restrict PHP file functions

linux

Disable dangerous PHP functions via php.ini or .htaccess

php_admin_value disable_functions "include,require,include_once,require_once"

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block LFI attack patterns
  • Restrict file system access through proper directory permissions and open_basedir restrictions

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Jobmonster Elementor Addon version. If version is 1.1.4 or lower, you are vulnerable.

Check Version:

wp plugin get jobmonster-addon --field=version

Verify Fix Applied:

Verify plugin version is 1.1.5 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file path patterns in access logs (e.g., ../../../etc/passwd)
  • Multiple 404 errors for non-existent plugin files
  • PHP warnings about failed file inclusions

Network Indicators:

  • HTTP requests with file path traversal patterns in parameters
  • Requests to plugin endpoints with unusual file extensions

SIEM Query:

source="web_access_logs" AND (uri="*../*" OR uri="*/etc/*" OR uri="*/proc/*") AND uri="*/wp-content/plugins/jobmonster-addon/*"

🔗 References

📤 Share & Export