How to install SQLMAP in Termux with an easy method

 Install SQLMAP in termux – Helo guys Welcome to our website. in this article I am going to show you how to install sqlmap in Termux

How to install SQLMAP in Termux with an easy method

What is sqlmap?

SQLMAP is an open-source tool that automatically detect and exploits SQL injection bug. by doing a SQL injection attack, an attacker can take over and manipulate a database on server. So from that we can steal or retrieve a database from a website that we want for example, we can retrieve website admin id and password from database.

Requirements:

  • An android device with android version 5.0 and above.
  • Termux application
  • Internet

How to install SQLMAP in Termux?

If you download the termux application means run the termux app

First we are going to update the package list so type this blow command.

apt update

Now we have python package so type this below command to install python.

pkg install python

pkg install python2 

After install python package we will install git package this git package will help you to clone the package.

pkg install git

After installing the git package we are going to clone the SQLMAP package into our directory with the help of git commaand.

git clone https://github.com/sqlmapproject/sqlmap.git

Now we have sqlmap folder in our termux root directory now we need to open that folder following commands.

cd sqlmap

Now we need to give the permission of read-write and execute to the SQLMAP python file by using the command.

chmod +x sqlmap 

After that you need to run the following in order to run the SQLMAP.

python2 sqlmap.py

Now SQLMAP is successfully installed on your termux.

if you want to run SQLMAP again next time then you need to launch the termux then you need to enter the directory of SQLMAP and then you need to run the python2 sqlmap.py 

 
 

SQL Injection

 

Post a Comment

Previous Post Next Post