CVE-2026-49841
Undergoing Analysis Undergoing Analysis - In Progress
BaseFortify

Publication date: 2026-06-09

Last updated on: 2026-06-09

Assigner: GitHub, Inc.

Description
FreeSWITCH is a Software Defined Telecom Stack enabling the digital transformation from proprietary telecom switches to a software implementation that runs on any commodity hardware. Prior to version 1.11.1, the mod_verto HTTP request handler allocates a fixed 2 MiB buffer for a POST application/x-www-form-urlencoded body but accepts Content-Length up to just under 10 MiB. The body-read loop is bounded by Content-Length rather than the buffer size, producing an attacker-controlled heap overflow of up to ~8 MiB -- before the HTTP basic-auth check runs. This issue has been patched in version 1.11.1.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-09
Last Modified
2026-06-09
Generated
2026-06-10
AI Q&A
2026-06-09
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
freeswitch freeswitch to 1.11.1 (exc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-122 A heap overflow condition is a buffer overflow, where the buffer that can be overwritten is allocated in the heap portion of memory, generally meaning that the buffer was allocated using a routine such as malloc().
CWE-131 The product does not correctly calculate the size to be used when allocating a buffer, which could lead to a buffer overflow.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Compliance Impact

CVE-2026-49841 is a critical heap buffer overflow vulnerability that can lead to denial of service, information disclosure, and remote code execution in FreeSWITCH's mod_verto module.

Such impacts can compromise the confidentiality, integrity, and availability of data processed by affected systems.

Therefore, if FreeSWITCH is used in environments subject to regulations like GDPR or HIPAA, this vulnerability could lead to non-compliance due to potential unauthorized data access or service disruption.

Mitigating the vulnerability by applying the patch or workarounds is essential to maintain compliance with these standards.

Executive Summary

CVE-2026-49841 is a critical heap buffer overflow vulnerability in the FreeSWITCH mod_verto module. The module allocates a fixed 2 MiB buffer for HTTP POST requests with application/x-www-form-urlencoded content but accepts a Content-Length header of nearly 10 MiB. This mismatch allows an attacker to send up to 8 MiB of data beyond the allocated buffer, causing a heap overflow before HTTP basic authentication is performed.

The vulnerability is exploitable remotely without credentials or prior interaction and affects systems configured with a <vhost> in the verto profile, typically used for serving files or web interfaces.

Impact Analysis

This vulnerability can lead to several severe impacts including reliable denial of service, possible information disclosure by corrupting adjacent heap allocations, and plausible remote code execution since the attacker controls the overflow contents.

Because the overflow occurs before authentication, an attacker can exploit it remotely without any credentials, making it highly dangerous.

Detection Guidance

This vulnerability can be detected by monitoring HTTP POST requests to the FreeSWITCH mod_verto module, specifically those targeting the default listener ports 8081 (plaintext) and 8082 (TLS). Anomalously large Content-Length headers close to 10 MiB with application/x-www-form-urlencoded content type may indicate an attempt to exploit the heap overflow.

Network detection can involve capturing and inspecting HTTP traffic for oversized POST requests to these ports.

Suggested commands for detection include using packet capture tools like tcpdump or tshark to filter such traffic:

  • tcpdump -i <interface> 'tcp port 8081 or tcp port 8082 and tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354' -w capture.pcap
  • tshark -r capture.pcap -Y 'http.request.method == "POST" and http.content_length > 2000000 and http.content_type == "application/x-www-form-urlencoded"'

Additionally, reviewing FreeSWITCH logs for crashes or abnormal behavior related to mod_verto may help identify exploitation attempts.

Mitigation Strategies

Immediate mitigation steps include restricting access to the verto listener ports (8081 and 8082) to trusted networks only.

You can also remove any <vhost> entries in the verto profile configuration to disable the HTTP request handler that is vulnerable.

Alternatively, disabling the mod_verto module entirely will prevent exploitation.

Ultimately, upgrading FreeSWITCH to version 1.11.1 or later, where the vulnerability is patched by resizing the body buffer allocation to match the Content-Length header, is the recommended permanent fix.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-49841. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart