We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only the substring before the first colon is retained, producing 2a04.
2a04
The full IPv6 address (e.g. 2a04:f28:1:1234:5678:9abc:def0:1234) is preserved.
2a04:f28:1:1234:5678:9abc:def0:1234
curl -H "X-Forwarded-For: 2a04:f28::1337" …
TrustedProxiesMiddleware
- Flow: 8.3.14 - PHP: 8.3
The root cause appears to be this line, which naïvely splits on the first : assuming a port delimiter:
:
https://github.com/neos/flow/blob/137c9d44802e173fb18c79ef2037a0a74995bbe2/Classes/Http/Middleware/TrustedProxiesMiddleware.php#L277
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Current Behavior
Only the substring before the first colon is retained, producing
2a04
.Expected Behavior
The full IPv6 address (e.g.
2a04:f28:1:1234:5678:9abc:def0:1234
) is preserved.Steps To Reproduce
curl -H "X-Forwarded-For: 2a04:f28::1337" …
).TrustedProxiesMiddleware
2a04
.Environment
Anything else?
The root cause appears to be this line, which naïvely splits on the first
:
assuming a port delimiter:https://github.com/neos/flow/blob/137c9d44802e173fb18c79ef2037a0a74995bbe2/Classes/Http/Middleware/TrustedProxiesMiddleware.php#L277
The text was updated successfully, but these errors were encountered: