-
-
Save TexRx/2772841 to your computer and use it in GitHub Desktop.
try to bust through proxies for a remote address
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
private static readonly string[] _ipHeaderOrder = new[] { "HTTP_X_FORWARDED_FOR", "HTTP_X_CLUSTER_CLIENT_IP", "REMOTE_ADDR" }; | |
public static string ClientAddress(this HttpRequest request) | |
{ | |
foreach (string header in _ipHeaderOrder) | |
{ | |
string ipAddress = request.ServerVariables[header]; | |
if (ipAddress != null) | |
{ | |
return ipAddress; | |
} | |
} | |
return string.Empty; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment