禁止站外提交表单确保asp提交的安全
下面我们就一起来看看怎么禁止站外提交表单确保asp提交的安全
禁止站外提交表单详细代码如下:
<%
server_v1=Cstr(Request.ServerVariables("HTTP_REFERER"))
server_v2=Cstr(Request.ServerVariables("SERVER_NAME"))
if mid(server_v1,8,len(server_v2))<>server_v2 then
response.write "<br><br><center><table border=1 cellpadding=20 bordercolor=black bgcolor=#EEEEEE width=450>"
response.write "<tr><td style='font:9pt Verdana'>"
response.write "你提交的路径有误,禁止从站点外部提交数据请不要乱改参数!"
response.write "</td></tr></table></center>"
response.end
end if
%>
比如说上面的代码起名为check_path.asp保存,每次遇到表单提交时引用就行了:
<!--#include file="check_path.asp"-->
以上就是asp检测并禁止从站外提交表单的代码,有需要的朋友可以参考下!做到尽可能少的漏洞,才能确保自己网站的安全和正常运行!