码迷,mamicode.com
首页 > Web开发 > 详细

php常见的攻击方式

时间:2018-11-28 18:58:17      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:tle   cape   xss攻击   class   where   string   http   内容   方式   

1、SQL注入

/* sql注入方式
* 1、数字注入 eg: select * from id = [1 or 1] -----通过intval()函数将id转为数字
* eg: select * from id = [1 union select ....]
* 2、分号注入 eg: select * from test1 where id=[1;# ] and name="aa"
* eg: select * from test1 where id=[1; insert/select/update语句]
* 3、引号注入:eg:用户登录:SELECT * FROM users WHERE user=‘john‘ AND password=‘ [‘ OR ‘‘=‘]‘ //使用转义处理
*
* */
解决办法:mysql_real_escape_string()函数转义,inteval()函数格式化数字,采用mysqli或者PDO预处理机制
现在的主流框架都采用PDO尽心预处理,或者参数绑定;


2、XSS攻击
XSS(跨站点脚本攻击)是一种攻击,由用户输入一些数据到你的网站,其中包括客户端脚本(通常JavaScript)。如果你没有过滤就输出数据到另一个web页面,这个脚本将被执行。接收用户提交的文本内容

php常见的攻击方式

标签:tle   cape   xss攻击   class   where   string   http   内容   方式   

原文地址:https://www.cnblogs.com/gongxulei/p/10033648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!