How To Install SQLIV in Kali Linux Rolling Version 2022.4/2023.2

Hades
1 min readJun 17, 2023

--

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 : this is just education and sharing about how to install, outside of education and sharing is not my responsibility.

Please follow the below installation guide :

1. git clone https://github.com/the-robot/sqliv.git
2. sudo apt-get install libxml2-dev libxslt-dev python2-dev
3. curl https://bootstrap.pypa.io/pip/2.7/get-pip.py — output /tmp/get-pip.py
4. sudo python2 /tmp/get-pip.py
5. pip2 install lxml
6. pip2 install nyawc
7. sudo python2 setup.py -i

if the installation is successful then it will look like this

Thank you, if there is a mistake in writing, please correct it.
Best regards Hades

--

--