CVE-2026-0826 Critical Unauthenticated Stack Buffer Overflow...#2307
Open
carlospolop wants to merge 1 commit into
Open
CVE-2026-0826 Critical Unauthenticated Stack Buffer Overflow...#2307carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://www.rapid7.com/blog/post/ve-cve-2026-0826-critical-unauthenticated-stack-buffer-overflow-hp-poly-vvx-trio-voip-phones-fixed Content Categories: Based on the analysis, this content was categorized under "Network Services Pentesting > Pentesting VoIP > SIP / SDP ICE candidate parsing overflow; optionally cross-link from Binary Exploitation > Stack Overflow / ROP". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview
Rapid7 Labs disclosed CVE-2026-0826, a critical unauthenticated stack-based buffer overflow in HP Poly VVX and Trio VoIP phones. A remote unauthenticated attacker can exploit it to obtain remote code execution as root on vulnerable devices when the non-default ICE feature is enabled. The vulnerability is classified as CWE-121: Stack-based Buffer Overflow and has CVSSv4 9.2 Critical🔧 Technical DetailsRemote parser exploitation via oversized SDP attributes: A network protocol parser that copies a line-based attribute into a fixed-size stack buffer without checking the destination size can be exploited by sending an oversized attribute through the protocol's normal message format. In this case, SIP carries SDP, SDP carries an ICE
a=candidate:attribute, and the parser copies the full candidate line intochar buffer256[256]withmemcpy(buffer256, string_line, string_line_length). Any candidate line longer than 256 bytes corrupts adjacent stack memory; because the function later returns using saved ARM registers from the same frame, the attacker can overwrite savedr4,r5,r11, andpc.Offset discovery and register-control validation on ARM: A practical way to validate exploitability is to build a structured overflow pattern that accounts for protocol pr...
🤖 Agent Actions
Done.
Updated:
src/network-services-pentesting/pentesting-voip/basic-voip-protocols/sip-session-initiation-protocol.mdAdded:
a=candidate:parsing bugs in SIP-carried SDP/proc/<pid>/mapsfor stable shared-library bases## ReferencesValidation:
mdbook buildcould not be run here becausemdbookis not installed (/bin/bash: mdbook: command not found)This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.