How To Install responder on Kali Linux

In this tutorial we learn how to install responder on Kali Linux. responder is LLMNR/NBT-NS/mDNS Poisoner

Introduction

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

What is responder

responder is:

This package contains Responder/MultiRelay, an LLMNR, NBT-NS and MDNS poisoner. It will answer to specific NBT-NS (NetBIOS Name Service) queries based on their name suffix (see: http://support.microsoft.com/kb/163409). By default, the tool will only answer to File Server Service request, which is for SMB.

The concept behind this is to target your answers, and be stealthier on the network. This also helps to ensure that you don’t break legitimate NBT-NS behavior. You can set the -r option via command line if you want to answer to the Workstation Service request name suffix.

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

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

sudo apt-get update

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

sudo apt-get -y install responder

Install responder Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install responder

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

sudo aptitude -y install responder

How To Uninstall responder on Kali Linux

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

sudo apt-get remove responder

Uninstall responder And Its Dependencies

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

sudo apt-get -y autoremove responder

Remove responder Configurations and Data

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

sudo apt-get -y purge responder

Remove responder configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge responder

Dependencies

responder have the following dependencies:

References

Summary

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