CVE-2025-67621

7.5 HIGH

📋 TL;DR

This vulnerability in the Eight Day Week Print Workflow WordPress plugin allows unauthorized users to retrieve embedded sensitive data. It affects all versions up to and including 1.2.5. WordPress sites using this plugin are vulnerable to information disclosure.

💻 Affected Systems

Products:
  • 10up Eight Day Week Print Workflow WordPress Plugin
Versions: n/a through <= 1.2.5
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with vulnerable plugin versions are affected regardless of configuration.

⚠️ 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 extract sensitive system information, database credentials, or other embedded secrets, potentially leading to full site compromise.

🟠

Likely Case

Unauthenticated attackers can access sensitive configuration data or internal information that should not be publicly exposed.

🟢

If Mitigated

With proper access controls and network segmentation, impact is limited to information disclosure without direct system access.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Based on CWE-497 description, exploitation likely involves simple HTTP requests to access unauthorized data endpoints.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: >1.2.5

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/eight-day-week-print-workflow/vulnerability/wordpress-eight-day-week-print-workflow-plugin-1-2-5-sensitive-data-exposure-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Eight Day Week Print Workflow'. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and remove plugin.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily deactivate the vulnerable plugin until patched version is available

wp plugin deactivate eight-day-week-print-workflow

Restrict Access

linux

Use web application firewall or .htaccess to block access to plugin endpoints

# Add to .htaccess:
<FilesMatch "eight-day-week-print-workflow">
Order Deny,Allow
Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Remove the plugin completely from production environment
  • Implement strict network access controls to limit who can reach the WordPress instance

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Eight Day Week Print Workflow version number

Check Version:

wp plugin get eight-day-week-print-workflow --field=version

Verify Fix Applied:

Verify plugin version is >1.2.5 and test that sensitive endpoints no longer return unauthorized data

📡 Detection & Monitoring

Log Indicators:

  • Unusual access to plugin-specific endpoints
  • Multiple 200 OK responses to plugin URLs from unauthorized IPs

Network Indicators:

  • HTTP requests to /wp-content/plugins/eight-day-week-print-workflow/ endpoints from untrusted sources

SIEM Query:

source="web_logs" AND uri="/wp-content/plugins/eight-day-week-print-workflow/*" AND response_code=200

🔗 References

📤 Share & Export