How to Install Sqlmap in Termux Android
Sqlmap is a tool for exploiting sql bugs on a website automatically. So if you want to penetrate the web with the sql injection method you can use this tool, usually this tool is already available on linux specifically for penetration but what if you don't have a laptop or computer to use this tool? the solution is easy, you can use Android to run this tool. To run this tool on Android you have to use the Termux application, Termux is a terminal emulator application on Android and you can get Termux itself on the Playstore. Yep, just go to the steps to install Sqlmap on termux android.
How to Install Sqlmap on Android
- Open the termux application
- Make sure termux has been upgraded and updated with the command
apt-get update && apt-get upgrade
- Then first install python 2.7 to run sqlmap with the command
apt-get install python2 -y
- After that install git to download sqlmap from github with the command
apt-get install git -y
- After all the necessary packages have been installed, the next step is to download sqlmap from github
git clone https://github.com/sqlmapproject/sqlmap.git
- After the download is complete, the next step is to move to the sqlmap directory with the command
cd sqlmap
- So, if you have reached this stage, sqlmap can be run according to the image below
python2 sqlmap.py
That's how to install sqlmap on termux android.