-
Notifications
You must be signed in to change notification settings - Fork 30.6k
New issue
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
HTTP2 client incorrectly sets TLS ServerName to an IP address #56189
Labels
http2
Issues or PRs related to the http2 subsystem.
Comments
islandryu
added a commit
to islandryu/node
that referenced
this issue
Dec 29, 2024
islandryu
added a commit
to islandryu/node
that referenced
this issue
Dec 29, 2024
islandryu
added a commit
to islandryu/node
that referenced
this issue
Jan 9, 2025
aduh95
pushed a commit
that referenced
this issue
Jan 27, 2025
Fixes: #56189 PR-URL: #56530 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
pushed a commit
that referenced
this issue
Jan 30, 2025
Fixes: #56189 PR-URL: #56530 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
pushed a commit
that referenced
this issue
Jan 31, 2025
Fixes: #56189 PR-URL: #56530 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
pushed a commit
that referenced
this issue
Feb 4, 2025
Fixes: #56189 PR-URL: #56530 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
pushed a commit
that referenced
this issue
Feb 6, 2025
Fixes: #56189 PR-URL: #56530 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version
v23.3.0
Platform
Subsystem
http2
What steps will reproduce the bug?
How often does it reproduce? Is there a required condition?
always
What is the expected behavior? Why is that the expected behavior?
What do you see instead?
1.1.1.1
as theserver_name
TLS extensionAdditional information
The server name is set in
http2/core.js
. That function is missing a check fornet.isIP
that's used in_http_agent.js
for example.However the fix isn't that simple because the
servername
is then used to constructoriginSet
and just adding the check would probably regress #39919.The text was updated successfully, but these errors were encountered: