服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - asp防范跨站点脚本攻击的方法

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

2019-09-29 11:06asp教程网 ASP教程

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

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

延伸 · 阅读

精彩推荐