How To Install isr-evilgrade on Kali Linux
Introduction
In this tutorial we learn how to install isr-evilgrade
on Kali Linux.
What is isr-evilgrade
isr-evilgrade is:
Evilgrade is a modular framework that allows the user to take advantage of poor upgrade implementations by injecting fake updates. It comes with pre-made binaries (agents), a working default configuration for fast pentests, and has it’s own WebServer and DNSServer modules. Easy to set up new settings, and has an autoconfiguration when new binary agents are set.
There are three methods to install isr-evilgrade
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 isr-evilgrade Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install isr-evilgrade
using apt-get
by running the following command:
sudo apt-get -y install isr-evilgrade
Install isr-evilgrade Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install isr-evilgrade
using apt
by running the following command:
sudo apt -y install isr-evilgrade
Install isr-evilgrade 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 isr-evilgrade
using aptitude
by running the following command:
sudo aptitude -y install isr-evilgrade
How To Uninstall isr-evilgrade on Kali Linux
To uninstall only the isr-evilgrade
package we can use the following command:
sudo apt-get remove isr-evilgrade
Uninstall isr-evilgrade And Its Dependencies
To uninstall isr-evilgrade
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove isr-evilgrade
Remove isr-evilgrade Configurations and Data
To remove isr-evilgrade
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge isr-evilgrade
Remove isr-evilgrade configuration, data, and all of its dependencies
We can use the following command to remove isr-evilgrade
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge isr-evilgrade
Dependencies
isr-evilgrade have the following dependencies:
References
Summary
In this tutorial we learn how to install isr-evilgrade
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.