当前位置:编程学习 > asp >>

asp防范跨站点脚本攻击的的方法

答案:防范跨站点脚本攻击的的方法
1.利用 空格 替换特殊字符 % < > { } ; & + - " ' ( )
2.使用@,具体而言是将以下语句
exec="insert into user(username,psw,易做图,department,phone,email,demo) values('"&username&"','"&psw&"','"&易做图&"','"&department&"','"&phone&"','"&email&"','"&@demo&"')"
conn.execute exec
替换成:
exec="insert into user(username,psw,易做图,department,phone,email,demo) values('@username','@psw','@易做图','@department','@phone','@email','@demo')"
conn.execute exec

上一个:根据日期得到生肖的ASP函数
下一个:asp cint clng的范围与防止cint和clng的溢出解决方法大全

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,