What is Mitel MiCollab?
Mitel MiCollab is a widely deployed enterprise unified communications platform combining voice, video, messaging, and collaboration features. It is used by businesses and organizations for internal communications, integrating with PBX phone systems and providing web-based and mobile access to communications. MiCollab's web interface exposes REST API endpoints for management and messaging functions — making any authentication bypass in these APIs a high-impact vulnerability. Mitel products are commonly found in enterprise, healthcare, and government environments.
Overview
CVE-2024-41713 is a path traversal vulnerability (CWE-22) in Mitel MiCollab's NuPoint Unified Messaging (NPE) REST API component. An unauthenticated attacker can craft a URL with path traversal sequences that bypass the API's authentication check, accessing administrative endpoints without credentials. This vulnerability was discovered by watchTowr Labs and documented in detail in December 2024, where they also demonstrated chaining it with CVE-2024-55550 (an authenticated arbitrary file read in MiCollab's Chat Service) — the CVE-2024-41713 authentication bypass eliminates the authentication requirement, making CVE-2024-55550 exploitable without any credentials. The combined chain achieves unauthenticated arbitrary file read of any file on the MiCollab server. CISA added it to KEV on January 7, 2025, confirming active exploitation including by ransomware actors.
Affected Versions
| Product | Vulnerable | Fixed |
|---|---|---|
| Mitel MiCollab | < 9.8 SP2 (9.8.2) | 9.8 SP2 (9.8.2) |
Technical Details
The path traversal (CWE-22) is in the NuPoint Unified Messaging REST API endpoint, accessible via the MiCollab web interface. The API performs authentication checks based on the URL path structure. By inserting .. path traversal sequences into the request URL, an attacker can cause the authentication check to be bypassed — the path normalization logic resolves the traversal sequences after the authentication decision is made, allowing access to authenticated API endpoints without credentials.
Attack chain with CVE-2024-55550:
- CVE-2024-41713 (path traversal auth bypass): Attacker accesses an authenticated REST API endpoint without credentials by using a traversal URL
- CVE-2024-55550 (arbitrary file read): Via the now-accessible authenticated endpoint, the attacker reads arbitrary files from the server filesystem
The combined result is unauthenticated arbitrary file read — enabling extraction of:
- MiCollab configuration files containing database credentials
- SSH private keys and TLS certificates
- Operating system files including
/etc/passwdand/etc/shadow - Application secrets that could enable further compromise
Discovery
watchTowr Labs (Benjamin Harris and team), published December 5, 2024. watchTowr identified both CVE-2024-41713 and the chaining technique with CVE-2024-55550 in the same research.
Exploitation Context
CISA confirmed active exploitation and added CVE-2024-41713 to the KEV catalog on January 7, 2025, with a three-week remediation deadline. The ransomwareUse: true flag indicates ransomware operators exploited the vulnerability — the arbitrary file read capability enables credential theft that facilitates lateral movement and ransomware deployment. The combination of wide enterprise deployment, no-auth requirement, and a published watchTowr PoC made this a high-value target for ransomware groups in the weeks following public disclosure.
Remediation
- Upgrade Mitel MiCollab to 9.8 SP2 (9.8.2) or later immediately. The CISA deadline was January 28, 2025.
- Apply patches for both CVE-2024-41713 and CVE-2024-55550 — both must be addressed; fixing only one leaves the chain partially viable.
- Restrict network access to the MiCollab web interface — limit access to known corporate IP ranges and VPN clients; the NuPoint REST API should not be internet-exposed if avoidable.
- Audit MiCollab access logs for path traversal patterns (
../sequences) in API request URLs from the exposure period. - Rotate credentials stored in MiCollab configuration files if exploitation is suspected — database passwords, certificates, and API keys may have been exfiltrated.
Key Details
| Property | Value |
|---|---|
| CVE ID | CVE-2024-41713 |
| Vendor / Product | Mitel — MiCollab |
| NVD Published | 2024-10-21 |
| NVD Last Modified | 2025-11-04 |
| CVSS 3.1 Score | 9.1 |
| CVSS 3.1 Vector | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N |
| Severity | CRITICAL |
| CWE | CWE-22 find similar ↗ |
| CISA KEV Added | 2025-01-07 |
| CISA KEV Deadline | 2025-01-28 |
| Known Ransomware Use | ⚠️ Yes |
CVSS 3.1 Breakdown
Required Action
Timeline
| Date | Event |
|---|---|
| 2024-10-21 | CVE published; Mitel releases MISA-2024-0029 advisory |
| 2024-12-05 | watchTowr Labs publishes full research on CVE-2024-41713 chained with CVE-2024-55550 |
| 2025-01-07 | CISA adds to KEV catalog |
| 2025-01-28 | CISA BOD 22-01 remediation deadline |
References
| Resource | Type |
|---|---|
| Mitel Security Advisory MISA-2024-0029 | Vendor Advisory |
| NVD — CVE-2024-41713 | Vulnerability Database |
| CISA KEV Catalog Entry | US Government |
| watchTowr Labs — Mitel MiCollab Auth Bypass + Arbitrary File Read | Security Research |