您现在的位置是:网站首页> 编程资料编程资料
ADSI+ASP添加IP到IIS禁止访问列表中_应用技巧_
2023-05-25
355人已围观
简介 ADSI+ASP添加IP到IIS禁止访问列表中_应用技巧_
复制代码 代码如下:
<%@ Language=VBScript %>
<%
Dim strIP
strIP = request("IP")
%>
<%
if strIP="list" then
Call ListDenyIP("2443")
response.end
end if
if strIP="query" then
Call CheckWebSiteSetup
response.end
end if
#
if strIP<>"" then
Call AddDenyIP("2443",strIP)
end if
Sub CheckWebSiteSetup()
Set IISOBJ=GetObject("IIS://LocalHost/W3SVC")
for each website in IISOBJ
if website.Class="IIsWebServer" then
for each b in website.ServerBindings
response.write ("Server "&Website.AdsPath" has binding"&b)
response.write ("
")
next
end if
next
end sub
#
Sub ListDenyIP(strWebNo)
set SecObj = GETObject("IIS://LocalHost/W3SVC/"+strWebNo+"/Root")
set MyIPSec = SecObj.IPSecurity
IPList=MyIPSec.IPDeny
if ubound(IPList)<0 then
response.write "
无数据,请先随便加一条
"
exit sub
end if
#
intIPListCount=ubound(IPList)+1
#
for i=0 to ubound(IPList)
response.write i+1
response.write ":"
response.write IPList(i)
response.write "
"
next
end sub
Sub AddDenyIP(strWebNo,strDenyIp)
set SecObj = GETObject("IIS://LocalHost/W3SVC/"+strWebNo+"/Root")
set MyIPSec = SecObj.IPSecurity
' Make sure GrantByDefault=TRUE or your changes will not count.
If (FALSE = MyIPSec.GrantByDefault) Then
Response.Write "
GrantByDefault was not TRUE. Setting to TRUE.
"
MyIPSec.GrantByDefault = TRUE
End If
IPList=MyIPSec.IPDeny
if ubound(IPList)<0 then
response.write "
无数据,请先随便加一条
"
exit sub
end if
#
intIPListCount=ubound(IPList)+1
#
for i=0 to ubound(IPList)
if strDenyIp = left(IPList(i),len(strDenyIp)) then
response.write "
重复数据。
"
exit sub
end if
next
redim Preserve IPList(intIPListCount)
IPList(intIPListCount)=strDenyIp
response.write "新添加:"
response.write strDenyIp
response.write "
"
MyIPSec.IPDeny = IPList
SecObj.IPSecurity = MyIPSec
SecObj.Setinfo
end sub
%>
您可能感兴趣的文章:
相关内容
- ASP生成html的新方法_应用技巧_
- ASP+Access数据库安全设置方法小结_应用技巧_
- JS复制特定内容到粘贴板_应用技巧_
- ajax+asp无限级分类树型结构(带数据库)_应用技巧_
- ajax+asp无限级分类树型结构(带数据库)_应用技巧_
- 一个带采集远程文章内容,保存图片,生成文件等完整的采集功能_小偷/采集_
- asp #include file 与 #include virtual 的区别小结第1/2页_应用技巧_
- 检查access数据库中是否存在某个名字的表的asp代码_应用技巧_
- 通过asp程序来创建access数据库_应用技巧_
- P3P 和 跨域 (cross-domain) cookie 访问(读取和设置)_应用技巧_
