Do not try to split ip and port of x-forwarded-for addresses
This commit is contained in:
parent
bcf4cb09e7
commit
a7d9e2719a
@ -28,7 +28,7 @@ func GetIPAddressFromRequest(req *http.Request) string {
|
||||
ipAddressString := req.RemoteAddr
|
||||
xForwardedFor := req.Header.Get("X-FORWARDED-FOR")
|
||||
if xForwardedFor != "" {
|
||||
ipAddressString = xForwardedFor
|
||||
return xForwardedFor
|
||||
}
|
||||
|
||||
ip, _, err := net.SplitHostPort(ipAddressString)
|
||||
|
Loading…
Reference in New Issue
Block a user