How To Install rebind on Kali Linux

In this tutorial we learn how to install rebind on Kali Linux. rebind is DNS rebinding tool

Introduction

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

What is rebind

rebind is:

Rebind is a tool that implements the multiple A record DNS rebinding attack. Although this tool was originally written to target home routers, it can be used to target any public (non RFC1918) IP address.

Rebind provides an external attacker access to a target router’s internal Web interface. This tool works on routers that implement the weak end system model in their IP stack, have specifically configured firewall rules, and who bind their Web service to the router’s WAN interface. Note that remote administration does not need to be enabled for this attack to work. All that is required is that a user inside the target network surf to a Web site that is controlled, or has been compromised, by the attacker.

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

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

sudo apt-get update

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

sudo apt-get -y install rebind

Install rebind Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install rebind

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

sudo aptitude -y install rebind

How To Uninstall rebind on Kali Linux

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

sudo apt-get remove rebind

Uninstall rebind And Its Dependencies

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

sudo apt-get -y autoremove rebind

Remove rebind Configurations and Data

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

sudo apt-get -y purge rebind

Remove rebind configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge rebind

Dependencies

rebind have the following dependencies:

References

Summary

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