How To Install peframe on Ubuntu 18.04

In this tutorial we learn how to install peframe on Ubuntu 18.04. peframe is open source tool to perform static analysis on PE malware

Introduction

In this tutorial we learn how to install peframe on Ubuntu 18.04.

What is peframe

peframe is:

PEframe is a open source tool to perform static analysis on Portable Executable malware and generic suspicious files. It can help malware researchers to detect packer, xor, digital signature, mutex, anti debug, anti virtual machine, suspicious sections and functions, and much more information about the suspicious files.

There are three methods to install peframe on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install peframe Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install peframe

Install peframe Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install peframe using apt by running the following command:

sudo apt -y install peframe

Install peframe Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install peframe using aptitude by running the following command:

sudo aptitude -y install peframe

How To Uninstall peframe on Ubuntu 18.04

To uninstall only the peframe package we can use the following command:

sudo apt-get remove peframe

Uninstall peframe And Its Dependencies

To uninstall peframe and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove peframe

Remove peframe Configurations and Data

To remove peframe configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge peframe

Remove peframe configuration, data, and all of its dependencies

We can use the following command to remove peframe configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge peframe

References

Summary

In this tutorial we learn how to install peframe package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.