CVE-2025-68905

7.5 HIGH

📋 TL;DR

This CVE describes a PHP Local File Inclusion vulnerability in the JNews - Pay Writer 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:
  • JNews - Pay Writer WordPress Plugin
Versions: All versions up to and including 11.0.0
Operating Systems: Any OS running PHP and WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin activated. PHP configuration with allow_url_include disabled may limit impact.

⚠️ 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 PHP code leading to remote code execution.

🟠

Likely Case

Unauthorized access to sensitive server files, potential credential theft, and limited file system access.

🟢

If Mitigated

Limited impact with proper file permissions, web application firewalls, and restricted PHP functions.

🌐 Internet-Facing: HIGH - WordPress plugins are typically internet-facing and this vulnerability can be exploited remotely.
🏢 Internal Only: MEDIUM - Internal systems could still be vulnerable if accessed by authenticated users or through other attack vectors.

🎯 Exploit Status

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

Simple path traversal or file inclusion attacks can exploit this vulnerability. Public exploit details are available in security advisories.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 11.0.1 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/jnews-pay-writer/vulnerability/wordpress-jnews-pay-writer-plugin-11-0-0-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 'JNews - Pay Writer' and update to version 11.0.1 or later. 4. Verify update completes successfully.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the JNews - Pay Writer plugin until patched

wp plugin deactivate jnews-pay-writer

Restrict PHP file functions

linux

Modify php.ini to disable dangerous functions

disable_functions = include,require,include_once,require_once

🧯 If You Can't Patch

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

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → JNews - Pay Writer version. If version is 11.0.0 or lower, system is vulnerable.

Check Version:

wp plugin get jnews-pay-writer --field=version

Verify Fix Applied:

Verify plugin version is 11.0.1 or higher in WordPress admin panel. Test file inclusion attempts should fail.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file path patterns in access logs
  • Multiple requests to plugin files with path traversal parameters
  • Failed include/require attempts in PHP error logs

Network Indicators:

  • HTTP requests containing '../' or similar path traversal sequences
  • Requests to plugin files with unusual file parameters

SIEM Query:

source="web_access_logs" AND (uri="*jnews-pay-writer*" AND (param="*../*" OR param="*..\\*" OR param="*file=*"))

🔗 References

📤 Share & Export