sqli-labs基础:
1.查库:select schema_name from information_schema.schemata;
2.查表:select table_name from information_schema.tables where table_schema=‘security‘;
3.查列:select column_name from information_schema.columns where table_name=‘users‘;
4.查字段:select username,password froom security.users;
原文:https://www.cnblogs.com/hawk2020/p/13213601.html