Website Hacking - SQL Injections - Sqlmap Introduction


Sqlmap : This is a very powerful penetration test tool (open source) , it automates the discovery and exploitation of vulnerabilities to SQL injection attacks. It has many functions , and included features such as detecting DBMS, databases, tables , columns, retrieve data and even take control of a database.



Lets Start with Website Hacking - SQL Injections

Step 1 :-If you are using Kali Linux SQLMap comes pre-installed.If not installed then download from below link :-

http://sqlmap.org/


Boot into your Kali linux machine. Start a terminal, and type

sqlmap -hh

The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 2 :-First we need a target to do this,go to your test website in this example we have used a PHP one, we then navigate between pages, when you see "artists.php?artist=1" in the address bar , copy the address.


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 3 :-Open your terminal and type this :

sqlmap -u http://testphp.vulnweb.com/artists.php?artist=1 --dbs

The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 4 :-when sqlmap is done, it will tell you the Mysql version and some other information about the database.

At the end of the process , it will show you databases that it has found.


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 5 :-Now we are obviously interested in acuart database. Information schema can be thought of as a default table which is present on all your targets, and contains information about structure of databases, tables, etc., but not the kind of information we are looking for. So, now we will specify the database of interest using -D and tell sqlmap to enlist the tables using --tables command. The final sqlmap command will be-

sqlmap -u http://testphp.vulnweb.com/artists.php?artist=1 -D acuart --tables

The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 6 :-The result should be something like this


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 7 :-Now we will specify the database using -D, the table using -T, and then request the columns using --columns. I hope you guys are starting to get the pattern by now. The most appealing table here is users. It might contain the username and passwords of registered users on the website (hackers always look for sensitive data). The final command must be something like-

sqlmap -u http://testphp.vulnweb.com/artists.php?artist=1 -D acuart -T users --columns

The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 8 :-The result should be like this :


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 9 :-We have now successfully listed the contents of the database we can then extract information from these tables by using the following dumb again.

sqlmap -u http://testphp.vulnweb.com/artists.php?artist=1 -D acuart -T users --dumb

The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 10 :-Type 1 for default dictionary file.


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 11 :-The result should be like this :


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 12 :- Now, if you were following along attentively, now we will be getting data from one of the columns. Now we will be getting data from multiple columns. As usual, we will specify the database with -D, table with -T, and column with -C. We will get all data from specified columns using --dump-all. We will enter multiple columns and separate them with commas. The final command will look like this.

sqlmap -u http://testphp.vulnweb.com/artists.php?artist=1 -D acuart -T users --dumb-all

The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 13 :-Type 1 for default dictionary file.


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 14 :- The result should be like this :


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux


Step 15 :-The result should be something like this


The Best DoS Attack Toolkit - ZAmbIE | Kali Linux



I hope you enjoyed this article.



Sharing is caring

google
linkedin

About Author

Akash is a co-founder and an aspiring entrepreneur who keeps a close eye on open source, tech giants, and security. Get in touch with him by sending an email (akashchugh1994@gmail.com).


You may also like :-




Leave a Comment

Your email address will not be published. Required fields are marked *




Reader Comments [2]

free cash

Hello! Someone in my Myspace group shaed this site with
us so I came to look itt over.I'm definitely loving the information.
I'm bookmarking and will be tweeting this to my followers!
Supeb blog and fantastic design and style.

26-Jul-2019

Reply

nike react

I really wanted to post a quick word to thank you for the pleasant tactics you are showing here. My extended internet look up has now been recognized with useful facts and techniques to exchange with my friends. I 'd state that that many of us visitors are quite endowed to live in a great network with so many awesome individuals with interesting opinions. I feel quite happy to have discovered your web page and look forward to really more amazing minutes reading here. Thanks once again for all the details.

12-Sep-2019

Reply

Stay Connected

Popular Posts

Get Latest Stuff Through Email


Who Should Read TechTrick?

All the tricks and tips that TechTrick provides only for educational purpose. If you choose to use the information in TechTrick to break into computer systems maliciously and without authorization, you are on your own. Neither I (TechTrick Admin) nor anyone else associated with TechTrick shall be liable. We are not responsibe for any issues that caused due to informations provided here. So, Try yourself and see the results. You are not losing anything by trying... We are humans, Mistakes are quite natural. Here on TechTrick also have many mistakes..