How to Install Scrutiny on Kali Linux Latest?
Scrutiny is an open-source web vulnerability scanner, and security testing tool. In this tutorial, we will go through the steps to install Scrutiny on Kali Linux Latest.
Prerequisites
To follow this tutorial, you should have the following:
- Kali Linux Latest installed and running
- Root access or sudo privileges
Step 1: Install Required Packages
Before installing Scrutiny, we need to make sure that all dependencies are installed. We can install the required packages using apt-get. Open a terminal and run the following command:
sudo apt-get update
sudo apt-get install python3-dev python3-pip libssl-dev libcurl4-openssl-dev libxml2-dev libxslt1-dev libffi-dev libgnutls28-dev
Step 2: Clone Scrutiny from Github
We can clone the Scrutiny repository from Github using the following command:
git clone https://github.com/AnalogJ/scrutiny.git
This command will clone the repository in the current directory.
Step 3: Install Scrutiny
After cloning the Scrutiny repository, navigate to the directory by running the command:
cd scrutiny
Then, install the required packages using pip:
sudo pip3 install -r requirements.txt
Step 4: Run Scrutiny
Once Scrutiny is installed, we can run it using the following command:
python3 scanner.py -u http://example.com/
Replace http://example.com/ with the URL of the website you want to scan.
Conclusion
This tutorial has shown you how to install Scrutiny on Kali Linux Latest. With Scrutiny, you can easily scan your website for vulnerabilities and security issues.