Merge ec789274b1f5093f956d71d05b1cf88327e925d5 into d3ffc9985281dcf4d3bef604cce4e662b1a327a6

This commit is contained in:
guoyangzhen 2026-03-17 10:06:32 +09:00 committed by GitHub
commit 8d28cadce5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

11
gin.go
View File

@ -486,6 +486,17 @@ func (engine *Engine) validateHeader(header string) (clientIP string, valid bool
items := strings.Split(header, ",") items := strings.Split(header, ",")
for i := len(items) - 1; i >= 0; i-- { for i := len(items) - 1; i >= 0; i-- {
ipStr := strings.TrimSpace(items[i]) ipStr := strings.TrimSpace(items[i])
// Handle IPv6 with brackets and/or port: [::1], [::1]:8080, 192.168.1.1:8080
// net.SplitHostPort handles all these cases and strips brackets
if host, _, err := net.SplitHostPort(ipStr); err == nil {
ipStr = host
} else {
// No port present, just strip brackets if any (bare IPv6 like [::1])
ipStr = strings.TrimPrefix(ipStr, "[")
ipStr = strings.TrimSuffix(ipStr, "]")
}
ip := net.ParseIP(ipStr) ip := net.ParseIP(ipStr)
if ip == nil { if ip == nil {
break break