The SQLMAP tool allows you to inspect websites for the existence of any SQL injection vulnerabilities. Such as XSS vulnerabilities, or exploit SQL injection.
SQLmap supports various types of SQL injections and a variety of databases.
With the help of SQLmap, it is possible to run checks on the website to inspect if any website is vulnerable to SQL injection or not.
SQLmap is accessible for all the major platforms. One can easily add SQLMAP on Termux.
Commands to install SQLmap on Termux
pkg update && pkg upgrade -y
apt install python python2
pkg install git
git clone https://github.com/sqlmapproject/sqlmap
cd sqlmap
chmod +x sqlmap.py
python2 sqlmap.py

Comments
Post a Comment