fix: use snprintf in producer_vorbis.c#1250
Open
orbisai0security wants to merge 2 commits into
Open
Conversation
Automated security fix generated by OrbisAI Security
The Vorbis producer module uses sprintf() to format a metadata attribute name from a Vorbis file's comment tags into a fixed-size buffer (meta->name) without any bounds checking
ddennedy
requested changes
May 26, 2026
Member
ddennedy
left a comment
There was a problem hiding this comment.
Thank you for the report and contribution. The included test does not conform to this repository's choice of QTest for unit tests. See src/tests/test_mod_avformat/ for an example. The project also uses CMake; so a new test directory should be added to src/tests/CMakeLists.txt.
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.
Summary
Fix critical severity security issue in
src/modules/vorbis/producer_vorbis.c.Vulnerability
V-001src/modules/vorbis/producer_vorbis.c:60Description: The Vorbis producer module uses sprintf() to format a metadata attribute name from a Vorbis file's comment tags into a fixed-size buffer (meta->name) without any bounds checking. The 'str' variable is parsed directly from the Vorbis file metadata, which is fully attacker-controlled. An excessively long metadata key name will overflow the buffer, corrupting adjacent memory.
Changes
src/modules/vorbis/producer_vorbis.cVerification
Security Invariant
Regression test
This test guards against regressions — it's useful independent of the code change above.
Automated security fix by OrbisAI Security