Hire a professional hacker here atTheHackersPro!
TheHackersProTheHackersProTheHackersPro
(Monday - Sunday)
Submit request
TheHackersProTheHackersProTheHackersPro

How to Hack Website with Sqlmap in Kali Linux

fri

How to Hack Website with Sqlmap in Kali Linux. Hacking website with Sqlmap in Kali Linux. Disclaimer — TLDR; some stuff here can be used to carry out illegal activity, our intention is, however, to educate

0*peFQMMqOzTtTANfK

In the previous tutorial, we hacked a website using nothing but a simple browser on a Windows machine. It was a pretty clumsy method to say the least. However, knowing the basics is necessary before we move on to the advanced tools. In this tutorial, we’ll be using Kali Linux (see the top navigation bar to find how to install it if you haven’t already) and SqlMap (which comes preinstalled in Kali) to automate what we manually did in the Manual SQL Injection tutorial to hack websites.

Now it is recommended that you go through the above tutorial once so that you can get an idea about how to find vulnerable sites. In this tutorial we’ll skip the first few steps in which we find out whether a website is vulnerable or not, as we already know from the previous tutorial that this website is vulnerable.

Kali Linux

First off, you need to have Kali linux (or backtrack) up and running on your machine. Any other Linux distro might work, but you’ll need to install Sqlmap on your own. Now if you don’t have Kali Linux installed, you might want to go to this page, which will get you started on Beginner Hacking Using Kali Linux

Sqlmap

0*OQHjwo2Ro669uNjR

Basically its just a tool to make Sql Injection easier. Their official website introduces the tool as -“sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers. It comes with a powerful detection engine, many niche features for the ultimate penetration tester and a broad range of switches lasting from database fingerprinting, over data fetching from the database, to accessing the underlying file system and executing commands on the operating system via out-of-band connections.” A lot of features can be found on the SqlMap website, the most important being — “Full support for MySQL, Oracle, PostgreSQL, Microsoft SQL Server, Microsoft Access, IBM DB2, SQLite, Firebird, Sybase and SAP MaxDB database management systems.” That’s basically all the database management systems. Most of the time you’ll never come across anything other than MySql.

Hire Professional Hackers to Penetrate Websites Using Sqlmap in Kali linux

Sql Version

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

sqlmap -h

It lists the basic commands that are supported by SqlMap. To start with, we’ll execute a simple command
sqlmap -u <URL to inject>. In our case, it will be-

sqlmap -u http://testphp.vulnweb.com/listproducts.php?cat=1

Sometimes, using the –time-sec helps to speed up the process, especially when the server responses are slow.

sqlmap -u http://testphp.vulnweb.com/listproducts.php?cat=1 –time-sec 15

Either ways, when sqlmap is done, it will tell you the Mysql version and some other useful information about the database.

The final result of the above command should be something like this.

Note: Depending on a lot of factors, sqlmap my sometimes ask you questions which have to be answered in yes/no. Typing y means yes and n means no. Here are a few typical questions you might come across-

  • Some message saying that the database is probably Mysql, so should sqlmap skip all other tests and conduct mysql tests only. Your answer should be yes (y).
  • Some message asking you whether or not to use the payloads for specific versions of Mysql. The answer depends on the situation. If you are unsure, then its usually better to say yes.

How to Hack Website with Sqlmap in Kali Linux

Database

In this step, we will obtain database name, column names and other useful data from the database.

List of a few common enumeration commands

So first we will get the names of available databases. For this we will add –dbs to our previous command. The final result will look like –

sqlmap -u http://testphp.vulnweb.com/listproducts.php?cat=1 –dbs

0*qfbINYKbJgAPbabT

So the two databases are acuart and information schema.

Table

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. It can, however, be useful on a number of occasions. 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/listproducts.php?cat=1 -D acuart –tables

The result should be something like this –
Database: acuart
[8 tables]
+ — — — –+
| artists |
| carts |
| categ |
| featured |
| guestbook |
| pictures |
| products |
| users |
+ — — — –+
Now we have a list of tables. Following the same pattern, we will now get a list of columns.

HIRE PROFESSIONAL EXPERTS WITH SQLmAP IN KHALI LINUX

Columns

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/listproducts.php?cat=1 -D acuart -T users –columns

0*gQQO2Bqa dIDrmLi

The result would resemble this-

0* iAgI R4R0L0vCmB

Data

Now, if you were following along attentively, now we will be getting data from one of the columns. While that hypothesis is not completely wrong, its time we go one step ahead. 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. We will enter multiple columns and separate them with commas. The final command will look like this.

sqlmap -u http://testphp.vulnweb.com/listproducts.php?cat=1 -D acuart -T users -C email,name,pass –dump

0*053mbR0DbNn8WBZe

Here’s the result

0*9Lgc7G3ZrmFeFuOZ

John Smith, of course. And the password is test. Email is email@email.com?? Okay, nothing great, but in the real world web pentesting, you can come across more sensitive data. Under such circumstances, the right thing to do is mail the admin of the website and tell him to fix the vulnerability ASAP. Don’t get tempted to join the dark side. You don’t look pretty behind the bars. That’s it for this tutorial. Try to look at other columns and tables and see what you can dig up. Take a look at the previous tutorial on Manual SQl Injection which will help you find more interesting vulnerable site

7 Comments

  • Angela McLaughlin

    April 29, 2023 - 8:26 am

    im Angela McLaughlin and i came with good news, you don’t have to fight with your spouse before he/she opens his/her phone for you.
    All you need do is to Email h4ckerspro@protonmail.com or visit thehackerspro.com for any form of hack you need,
    i must confess this hacker has really helped me recover a lot from my spouse who left i and my children for 3 years.
    it is easier to reach them faster on telegram @h4ckerspro or

  • David D. Cook

    May 29, 2022 - 7:09 am

    Good site! I really love how it is easy on my eyes and the data are well written. I’m wondering how I might be notified when a new post has been made. I’ve subscribed to your feed which must do the trick! Have a nice day!

  • Bukakke

    April 26, 2022 - 2:05 am

    Another good post

  • xmc.pl

    April 21, 2022 - 11:49 pm

    When I initially commented I clicked the – Notify me when new feedback are added- checkbox and now each time a remark is added I get four emails with the identical comment. Is there any means youll be able to take away me from that service? Thanks! http://www.xmc.pl

  • lolly bneadus

    September 6, 2021 - 10:10 pm

    As someone who’s just started out in the cyber security world I’m currently using Kali to follow along through a course I’m taking. I’m liking it a lot so far, but it seems to be a bit frowned upon in this thread. Could you clue me in as to why that is?

  • Cody Jeanneret

    August 19, 2021 - 9:01 pm

    When I was just starting out in the hacking industry, I had no idea which way to go. But when I found thehackerspro and read their reviews, it seemed like it would be a good place for me to start. They are hire verified as a professional hackers and have helped me out numerous times although they are very pricy, they have never let me down, so I can confidently recommend

  • Piper Castellano

    August 19, 2021 - 8:59 pm

    I always hire thehackerspro for my company. They are quick and always have the results I need. I would say that they are not the cheapest but you get what you pay for in this business, and these guys are worth it.

Leave A Comment

Professional hackers for hire at TheHackersPro

(Sat - Thursday)
(10am - 05 pm)

Subscribe to our newsletter

Sign up to receive latest news, updates, promotions, and special offers delivered directly to your inbox.
No, thanks