CVE-2025-62086

5.4 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the Яндекс Доставка (Boxberry) WordPress plugin that allows attackers to exploit incorrectly configured access control security levels. The vulnerability affects all versions up to and including 2.32, potentially allowing unauthorized access to functionality intended for privileged users.

💻 Affected Systems

Products:
  • Яндекс Доставка (Boxberry) WordPress plugin
Versions: from n/a through <= 2.32
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress installations with the Boxberry plugin enabled. No specific OS requirements.

⚠️ 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 gain administrative privileges, modify plugin settings, access sensitive delivery data, or potentially chain with other vulnerabilities for full site compromise.

🟠

Likely Case

Unauthorized users accessing functionality reserved for administrators, such as viewing or modifying delivery settings, shipment data, or plugin configurations.

🟢

If Mitigated

With proper access controls and authentication checks, impact is limited to attempted unauthorized access that gets blocked.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires some level of access but missing authorization checks make it relatively simple to exploit once initial access is obtained.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 2.32

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/boxberry/vulnerability/wordpress-yandeks-dostavka-boxberry-plugin-2-32-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Яндекс Доставка (Boxberry)' plugin. 4. Click 'Update Now' if update available. 5. Alternatively, download latest version from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate boxberry

Access Restriction

linux

Restrict access to WordPress admin and plugin endpoints using web application firewall or .htaccess rules

# Add to .htaccess: Order Deny,Allow
Deny from all
Allow from trusted_ips

🧯 If You Can't Patch

  • Implement strict network segmentation to isolate WordPress installation
  • Enable detailed logging and monitoring for unauthorized access attempts to plugin endpoints

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for 'Яндекс Доставка (Boxberry)' version <= 2.32

Check Version:

wp plugin get boxberry --field=version

Verify Fix Applied:

Verify plugin version is >2.32 in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized access attempts to /wp-admin/admin-ajax.php with boxberry-related actions
  • Multiple failed authentication attempts followed by successful boxberry endpoint access

Network Indicators:

  • Unusual requests to boxberry API endpoints from unauthorized IPs
  • Traffic patterns suggesting privilege escalation attempts

SIEM Query:

source="wordpress.log" AND ("boxberry" OR "yandex.dostavka") AND (status=200 OR status=302) AND NOT user_role="administrator"

🔗 References

📤 Share & Export