How To Install fiked on Kali Linux

In this tutorial we learn how to install fiked on Kali Linux. fiked is Cisco VPN attack tool

Introduction

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

What is fiked

fiked is:

FakeIKEd, or fiked for short, is a fake IKE daemon supporting just enough of the standards and Cisco extensions to attack commonly found insecure Cisco VPN PSK+XAUTH based IPsec authentication setups in what could be described as a semi MitM attack. Fiked can impersonate a VPN gateway??s IKE responder in order to capture XAUTH login credentials; it doesn??t currently do the client part of full MitM.

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

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

sudo apt-get update

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

sudo apt-get -y install fiked

Install fiked Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install fiked

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

sudo aptitude -y install fiked

How To Uninstall fiked on Kali Linux

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

sudo apt-get remove fiked

Uninstall fiked And Its Dependencies

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

sudo apt-get -y autoremove fiked

Remove fiked Configurations and Data

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

sudo apt-get -y purge fiked

Remove fiked configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge fiked

Dependencies

fiked have the following dependencies:

References

Summary

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