SQL注入是WEB应用程序在利用用户输入构造SQL语句时,没有对用户输入进行限制和过滤,导致执行额外的SQL语句查询。
以下环境均为mySQL数据库
一、知识点
1、select * from ta where id=1 === select * from ta where id=’1’ === select * from ta where id=”1”(目前只测试id为varchar和int的情况下)
2、select * from ta where age=’’’’,返回结果为
SQL注入是WEB应用程序在利用用户输入构造SQL语句时,没有对用户输入进行限制和过滤,导致执行额外的SQL语句查询。
以下环境均为mySQL数据库
1、select * from ta where id=1 === select * from ta where id=’1’ === select * from ta where id=”1”(目前只测试id为varchar和int的情况下)
2、select * from ta where age=’’’’,返回结果为