服务器之家

服务器之家 > 正文

推荐的用Asp实现屏蔽IP地址访问的代码

时间:2019-10-11 10:38     来源/作者:asp代码网
  1. ‘受屏蔽IP地址(段)集合,星号为通配符,通常保存于配置文件中。  
  2. <%  
  3. Const BadIPGroup = "220.200.59.136|220.205.168.141"  
  4. If IsForbidIP(BadIPGroup) = True Then  
  5.     Response.Write(GetUserIP &"IP地址禁止访问")  
  6.     Response.End()  
  7. End If  
  8.  
  9. '****************************************************************  
  10. '参数vBadIP:要屏蔽的IP段,IP地址集合,用|符号分隔多个IP地址(段)  
  11. '返回Bool:True用户IP在被屏蔽范围,False 反之  
  12. '****************************************************************  
  13. Function IsForbidIP(vBadIP)  
  14.   Dim counter, arrIPPart, arrBadIP, arrBadIPPart, i, j  
  15.  
  16.   arrBadIP = Split(vBadIP, "|")  
  17.   arrIPPart = Split(GetUserIP(), ".")  
  18.  
  19.   For i = 0 To UBound(arrBadIP)  
  20.     counter = 0  
  21.     arrBadIPPart = Split(arrBadIP(i), ".")  
  22.     For j = 0 To UBound(arrIPPart)  
  23.       If (arrBadIPPart(j)) = "*" or Cstr(arrIPPart(j)) = Cstr(arrBadIPPart(j)) Then  
  24.          counter = counter + 1  
  25.       End If  
  26.     Next  
  27.     If counter = 4 Then  
  28.       IsForbidIP = True  
  29.       Exit Function  
  30.     End If  
  31.   Next  
  32.   IsForbidIP = False  
  33. End Function  
  34.  
  35. '***************  
  36. '返回客户IP地址  
  37. '***************  
  38. Function GetUserIP()  
  39.   Dim IP  
  40.   IP = Request.ServerVariables("HTTP_X_FORWARDED_FOR")  
  41.   If IP = "" Then IP = Request.ServerVariables("REMOTE_ADDR")  
  42.   GetUserIP = IP  
  43. End Function  
  44. %> 
标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部