How To Install python-donut-doc on Kali Linux

In this tutorial we learn how to install python-donut-doc on Kali Linux. python-donut-doc is Donut documentation

Introduction

In this tutorial we learn how to install python-donut-doc on Kali Linux.

What is python-donut-doc

python-donut-doc is:

Donut is a position-independent code that enables in-memory execution of VBScript, JScript, EXE, DLL files and dotNET assemblies. A module created by Donut can either be staged from a HTTP server or embedded directly in the loader itself. The module is optionally encrypted using the Chaskey block cipher and a 128-bit randomly generated key. After the file is loaded and executed in memory, the original reference is erased to deter memory scanners. The generator and loader support the following features: - Compression of input files with aPLib and LZNT1, Xpress, Xpress Huffman via RtlCompressBuffer. - Using entropy for API hashes and generation of strings. - 128-bit symmetric encryption of files. - Patching Antimalware Scan Interface (AMSI) and Windows Lockdown Policy (WLDP). - Patching command line for EXE files. - Patching exit-related API to avoid termination of host process. - Multiple output formats: C, Ruby, Python, PowerShell, Base64, C#, Hexadecimal.

This is the common documentation package.

There are three methods to install python-donut-doc 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 python-donut-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python-donut-doc using apt-get by running the following command:

sudo apt-get -y install python-donut-doc

Install python-donut-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python-donut-doc using apt by running the following command:

sudo apt -y install python-donut-doc

Install python-donut-doc 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 python-donut-doc using aptitude by running the following command:

sudo aptitude -y install python-donut-doc

How To Uninstall python-donut-doc on Kali Linux

To uninstall only the python-donut-doc package we can use the following command:

sudo apt-get remove python-donut-doc

Uninstall python-donut-doc And Its Dependencies

To uninstall python-donut-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove python-donut-doc

Remove python-donut-doc Configurations and Data

To remove python-donut-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge python-donut-doc

Remove python-donut-doc configuration, data, and all of its dependencies

We can use the following command to remove python-donut-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python-donut-doc

Dependencies

python-donut-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install python-donut-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.