How To Install ohrwurm on Kali Linux

In this tutorial we learn how to install ohrwurm on Kali Linux. ohrwurm is RTP fuzzer

Introduction

In this tutorial we learn how to install ohrwurm on Kali Linux.

What is ohrwurm

ohrwurm is:

ohrwurm is a small and simple RTP fuzzer that has been successfully tested on a small number of SIP phones. Features:

 - reads SIP messages to get information of the RTP port
 numbers
 - reading SIP can be omitted by providing the RTP port
 numbers, sothat any RTP traffic can be fuzzed
 - RTCP traffic can be suppressed to avoid that codecs
 - learn about the "noisy line"
 - special care is taken to break RTP handling itself
 - the RTP payload is fuzzed with a constant BER
 - the BER is configurable
 - requires arpspoof from dsniff to do the MITM attack
 - requires both phones to be in a switched LAN (GW
 operation only works partially)

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

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

sudo apt-get update

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

sudo apt-get -y install ohrwurm

Install ohrwurm Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install ohrwurm

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

sudo aptitude -y install ohrwurm

How To Uninstall ohrwurm on Kali Linux

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

sudo apt-get remove ohrwurm

Uninstall ohrwurm And Its Dependencies

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

sudo apt-get -y autoremove ohrwurm

Remove ohrwurm Configurations and Data

To remove ohrwurm configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge ohrwurm

Remove ohrwurm configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ohrwurm

Dependencies

ohrwurm have the following dependencies:

References

Summary

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