Installation of SQLiv Tool on Kali Linux OS

Step 1: In this step, we will get the SQLiv tool repository from GitHub open-source platform.

git clone https://github.com/xchopath/pathprober.git

 

Step 2: Use the below cd command to navigate to the SQLiv tool directory or folder.

cd pathprober

 

Step 3: We are in the directory of  SQLiv. Now execute the below command to download all the Python dependencies and requirements which are associated with the tool.

sudo pip3 install -r requirements.txt

 

Step 4: Run the below command in the terminal to view and understand the usage of the SQLiv tool.

./sqliv.py -h

 

SQLiv – Massive SQL Injection Scanner

SQL Injection is one of the trending and high impactful attacks on the web application. We can perform the scanning process of SQL Injection through automated tools like SQLMap etc. But, there is one of the best tools known as SQLiv tool which is a massive SQL Injection Scanner that can also find the vulnerable SQL Websites via Google Dorks. SQLiv tool is written in the Python language and it is also available on the Github platform, so we can download and use it for free.

Note: Before installing the tool make sure you have Python installed on your system, as SQLiv is a python-based tool. Click to get the installation process of Python on Linux – Python Installation Steps on Linux

Similar Reads

Installation of SQLiv Tool on Kali Linux OS

Step 1: In this step, we will get the SQLiv tool repository from GitHub open-source platform....

Working with SQLiv Tool on Kali Linux OS

Example 1: Multiple domain scanning with SQLi dork...

Contact Us