How To Install shellter on Kali Linux
Introduction
In this tutorial we learn how to install shellter
on Kali Linux.
What is shellter
shellter is:
Shellter is a dynamic shellcode injection tool aka dynamic PE infector. It can be used in order to inject shellcode into native Windows applications (currently 32-bit apps only). The shellcode can be something yours or something generated through a framework, such as Metasploit.
Shellter takes advantage of the original structure of the PE file and doesn’t apply any modification such as changing memory access permissions in sections (unless the user wants to), adding an extra section with RWE access, and whatever would look dodgy under an AV scan.
There are three methods to install shellter
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 shellter Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install shellter
using apt-get
by running the following command:
sudo apt-get -y install shellter
Install shellter Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install shellter
using apt
by running the following command:
sudo apt -y install shellter
Install shellter 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 shellter
using aptitude
by running the following command:
sudo aptitude -y install shellter
How To Uninstall shellter on Kali Linux
To uninstall only the shellter
package we can use the following command:
sudo apt-get remove shellter
Uninstall shellter And Its Dependencies
To uninstall shellter
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove shellter
Remove shellter Configurations and Data
To remove shellter
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge shellter
Remove shellter configuration, data, and all of its dependencies
We can use the following command to remove shellter
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge shellter
Dependencies
shellter have the following dependencies:
References
Summary
In this tutorial we learn how to install shellter
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.