Information_schema

tables

table_name

table_schema

columns

columns_name

x“union select 1,2,3.4 from information_schema.tables where table_schema=database()#

 select table_name from information_schema.tables where table_schema=database();

database() ⇒ DB Name

union

Last updated