• 一个获取远程客户端真实IP的例子


    一个获取远程客户端真实IP的例子(仅供参考):

    View Code
     1 public static string GetIP()
     2     {
     3         string strIP = string.Empty;
     4         //获取代理用户真实IP地址
     5         //如果不是代理用户将返回null
     6         strIP = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
     7         if (string.IsNullOrEmpty(strIP))
     8         {
     9             //获取远程客户端请求的IP地址
    10             strIP = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
    11         }
    12         if (string.IsNullOrEmpty(strIP))
    13         {
    14             //获取远程客户端的IP主机地址
    15             strIP = HttpContext.Current.Request.UserHostAddress;
    16         }
    17         if (string.IsNullOrEmpty(strIP) && !IsIP(strIP))
    18         {
    19             return "0.0.0.0";
    20         }
    21 
    22         return strIP;
    23     }
    24 
    25     public static bool IsIP(string strIP)
    26     {
    27         //验证IP格式
    28         return Regex.IsMatch(strIP, @"^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$");
    29     }

    -------------------------------------------------------学习交流 欢迎指摘----------------------------------------------------------

  • 相关阅读:
    内网横向渗透之票据传递攻击
    内网横向渗透之哈希传递攻击
    冰蝎2,3及哥斯拉特征分析
    钓鱼攻击之远程加载恶意Word模版文件上线CS
    powershell基础知识
    初学文件钓鱼
    powershell免杀
    tips
    ShardingSphere你还不会吗?(第一篇)
    Ubunt14.04+Nvidia drivers+cuda 8.0
  • 原文地址:https://www.cnblogs.com/willpan/p/ServerVariables.html
Copyright © 2020-2023  润新知