ext/filter: encode 0xFF in FILTER_SANITIZE_ENCODED#22762
Open
iliaal wants to merge 1 commit into
Open
Conversation
php_filter_encode_url() initialized its 256-byte "must encode" table with memset(tmp, 1, sizeof(tmp) - 1), leaving tmp[255] uninitialized. Whether 0xFF got percent-encoded then depended on stack garbage; valgrind reports the read as a conditional jump on an uninitialised value. Initialize the whole table. Closes phpGH-22762
iliaal
force-pushed
the
fix/filter-sanitize-encoded-0xff
branch
from
July 16, 2026 13:16
242b23b to
955ecad
Compare
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.
php_filter_encode_url()builds a 256-byte table marking which bytes need percent-encoding, but initializes it withmemset(tmp, 1, sizeof(tmp) - 1), so tmp[255] is never written. Whether 0xFF gets encoded then depends on stack garbage.On PHP-8.4 it currently reads as unencoded, which is visible from userland:
valgrind on the unpatched build:
Present on 8.3 through master, targeting 8.4 as the lowest actively supported branch.