SQL 注入一般流程 判断有无注入 单引号判断: ?name=root' 对应语句 select * from table where name='root'' 不符合语法规范,报错,说明有注入 and,or判断....很多,网上搜 order by 判断字段数 ,order by 5可以 6不行,说明5个字段 得到字段数后union select得到可以输出的字段: union select ,a union b 要求a,b字段数相同. 比如 ' union select 1,2,3,4,5…