zoukankan      html  css  js  c++  java
  • C#取真实IP地址多个代理背后的ip地址

    //多个代理背后的ip地址
    
    文件名:IPAddress.cs
    
    using System;
    using System.Data;
    using System.Configuration;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;
    using System.Text.RegularExpressions;
    namespace Common
    {
        /// <summary>
        /// IPAddress 的摘要说明
        /// </summary>
    public class IPAddress : System.Web.UI.Page
    {
    
        public static Int64 toDenaryIp ( string ip )
        {
            Int64 _Int64 = 0;
            string _ip = ip;
            if ( _ip.LastIndexOf ( "." ) > -1 )
            {
                string[] _iparray = _ip.Split ( '.' );
    
                _Int64 = Int64.Parse ( _iparray.GetValue ( 0 ).ToString() ) * 256 * 256 * 256 + Int64.Parse ( _iparray.GetValue ( 1 ).ToString() ) * 256 * 256 + Int64.Parse ( _iparray.GetValue ( 2 ).ToString() ) * 256 + Int64.Parse ( _iparray.GetValue ( 3 ).ToString() ) - 1;
            }
            return _Int64;
        }
    
        /// <summary>
        /// /ip十进制
        /// </summary>
        public static Int64 DenaryIp
        {
            get {
                Int64 _Int64 = 0;
    
                string _ip = IP;
                if ( _ip.LastIndexOf ( "." ) > -1 )
                {
                    string[] _iparray= _ip.Split ( '.' );
    
                    _Int64 = Int64.Parse ( _iparray.GetValue ( 0 ).ToString() ) * 256 * 256 * 256 + Int64.Parse ( _iparray.GetValue ( 1 ).ToString() ) * 256 * 256 + Int64.Parse ( _iparray.GetValue ( 2 ).ToString() ) * 256 + Int64.Parse ( _iparray.GetValue ( 3 ).ToString() )-1;
                }
                return _Int64;
            }
        }
    
        public static string IP
        {
            get
            {
                string result = String.Empty;
                result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
                if ( result != null && result != String.Empty )
                {
                   //可能有代理
                    if ( result.IndexOf ( "." ) == -1 ) //没有"."肯定是非IPv4格式
                        result = null;
                    else
                    {
                        if ( result.IndexOf ( "," ) != -1 )
                        {
                             //有",",估计多个代理。取第一个不是内网的IP。
                            result = result.Replace ( " ", "" ).Replace ( "", "" );
                            string[] temparyip = result.Split ( ",;".ToCharArray() );
                            for ( int i = 0; i < temparyip.Length; i++ )
                            {
                                if ( IsIPAddress ( temparyip[i] )
                                        && temparyip[i].Substring ( 0, 3 ) != "10."
                                        && temparyip[i].Substring ( 0, 7 ) != "192.168"
                                        && temparyip[i].Substring ( 0, 7 ) != "172.16." )
                                {
                                    return temparyip[i]; //找到不是内网的地址
                                }
                            }
                        }
                        else if ( IsIPAddress ( result ) ) //代理即是IP格式
                            return result;
                        else
                            result = null; //代理中的内容 非IP,取IP
                    }
    
                }
    
                string IpAddress = ( HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != null && HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != String.Empty )  HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] : HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
               
                if ( null == result || result == String.Empty )
                    result = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
    
                if ( result == null || result == String.Empty )
                    result = HttpContext.Current.Request.UserHostAddress;
    
                return result;
            }
        }
    
         //是否ip格式
        public static bool IsIPAddress ( string str1 )
        {
            if ( str1 == null || str1 == string.Empty || str1.Length < 7 || str1.Length > 15 ) return false;
    
            string regformat = @"^\d{1,3}[\.]\d{1,3}[\.]\d{1,3}[\.]\d{1,3}$";
    
            Regex regex = new Regex ( regformat, RegexOptions.IgnoreCase );
            return regex.IsMatch ( str1 );
        }
    
    
    }
    }
  • 相关阅读:
    Java消息队列--JMS概述
    Java消息队列--ActiveMq 初体验
    tomcat 日志禁用
    解决Tomcat catalina.out 不断成长导致档案过大的问题
    CentOS防火墙iptables-config的相关配置参数详解
    关于centos7下/etc/sysconfig/目录没有iptables问题
    死磕nginx系列--nginx 限流配置
    Nginx配置之负载均衡、限流、缓存、黑名单和灰度发布
    Android第一个个人APP(帐号助手)
    HDU 2896 病毒侵袭 (AC自己主动机)
  • 原文地址:https://www.cnblogs.com/zengxiangzhan/p/1636818.html
Copyright © 2011-2022 走看看