日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > C# >内容正文

C#

C#取真实IP地址--多个代理背后的ip地址

發布時間:2025/3/20 C# 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C#取真实IP地址--多个代理背后的ip地址 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
//多個代理背后的ip地址文件名:IPAddress.csusing 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;elseresult = 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 );}} }

總結

以上是生活随笔為你收集整理的C#取真实IP地址--多个代理背后的ip地址的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。