DVWA_Medium_Manualy_Dump
Extract database name
id=1 union select 1,gRoUp_cOncaT(0x7c,schema_name,0x7c) fRoM information_schema.schemata&Submit=Submit
Extract tables from database

Extract column name from database

Extract column name from database with tablename
GET Data like Table_Name:ColumnName
Explanation:
table_name: Represents the name of the table.0x3a: Hexadecimal for:to separate the table name from the column name.column_name: Represents the column name.group by table_name: Ensures that you concatenate columns for each table.
This query should return the tablename:columnname format as desired.

EXTRACT data from table

Last updated