fix: bounds-check hexdiff() offset-skip loop to prevent IndexError#5036
Open
citizen204 wants to merge 1 commit into
Open
fix: bounds-check hexdiff() offset-skip loop to prevent IndexError#5036citizen204 wants to merge 1 commit into
citizen204 wants to merge 1 commit into
Conversation
hexdiff() raised IndexError when the difflib alignment produced a 16-byte display row that was entirely a gap on one side. The loop that skips leading empty cells to compute the row offset had no bounds check and walked off the end of the row. Fixes secdev#5034 AI-Assisted: yes (Claude Sonnet 5)
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
hexdiff()raisesIndexError: list index out of rangewhen the difflib alignment (algo='difflib') produces a 16-byte display row that is entirely a "gap" on one side (a run of >=16 aligned insertions/deletions). The loop that skips leading empty cells to compute the row's starting offset had no bounds check and walked off the end of the row.Fixes #5034
Changes
scapy/utils.py: addedj < len(linex)/j < len(liney)bounds checks to the two offset-skipwhileloops inhexdiff(), so the loop stops once it reaches the end of a fully-gapped row instead of indexing past it.test/regression.uts: added a regression test using the minimal reproduction from the issue (hexdiff(b"B"*9 + b"\x08", b"A" + b"\x08" + b"A"*23, algo="difflib")), which previously raisedIndexErrorand now completes without crashing.AI-Assisted: yes (Claude Sonnet 5)