Reject IDNA dot-variant hosts that normalize to IP literals - #920
Merged
Conversation
normalize/2 gated hosts that percent-decode to an IP literal but ran the check before idnconvert_hostname. IDNA folds the Unicode full-stop variants U+3002/U+FF0E/U+FF61 onto ASCII dots, so a host like 127<U+3002>0<U+3002>0<U+3002>1 is not an IP literal at the gate yet normalizes to 127.0.0.1, slipping past a caller-side SSRF allowlist. Canonicalize those full-stop variants before the IP gate so both the raw and percent-encoded forms are rejected the same way, independent of the idna library's leniency.
benoitc
force-pushed
the
fix/normalize-idna-ip-bypass
branch
from
August 9, 2026 09:08
7ec0635 to
b07d195
Compare
Merged
benoitc
added a commit
that referenced
this pull request
Aug 11, 2026
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.
hackney_url:normalize/2rejects hosts that percent-decode to an IP literal, but the check runs beforeidnconvert_hostname/1. IDNA folds the Unicode full-stop variants (U+3002, U+FF0E, U+FF61) onto ASCII dots, so a host like127<U+3002>0<U+3002>0<U+3002>1is not an IP literal at the gate yet normalizes to127.0.0.1, bypassing a caller-side SSRF allowlist that ran on the pre-normalized host. Canonicalize those variants before the IP gate so the raw and percent-encoded forms are rejected the same way, independent of the idna library's leniency.