How To Install watobo on Kali Linux
Introduction
In this tutorial we learn how to install watobo
on Kali Linux.
What is watobo
watobo is:
WATOBO is intended to enable security professionals to perform highly efficient (semi-automated) web application security audits. It works like a local web proxy.
There are three methods to install watobo
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install watobo Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install watobo
using apt-get
by running the following command:
sudo apt-get -y install watobo
Install watobo Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install watobo
using apt
by running the following command:
sudo apt -y install watobo
Install watobo Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install watobo
using aptitude
by running the following command:
sudo aptitude -y install watobo
How To Uninstall watobo on Kali Linux
To uninstall only the watobo
package we can use the following command:
sudo apt-get remove watobo
Uninstall watobo And Its Dependencies
To uninstall watobo
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove watobo
Remove watobo Configurations and Data
To remove watobo
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge watobo
Remove watobo configuration, data, and all of its dependencies
We can use the following command to remove watobo
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge watobo
Dependencies
watobo have the following dependencies:
References
Summary
In this tutorial we learn how to install watobo
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.