Install Bettercap on Kali Linux

From Embedded Lab Vienna for IoT & Security
Jump to navigation Jump to search

Summary

This documentation describes how to install bettercap 2.x on Kali Linux

Requirements

  • Operating system: Kali Linux amd64 2019.2
  • Packages: wget unzip

Installation

Step 1: Download

Download the latest version of bettecap:

wget "https://github.com`curl -s https://github.com/bettercap/bettercap/releases | grep -E -o '/bettercap/bettercap/releases/download/v[0-9.]+/bettercap_linux_amd64_[0-9.]+zip' | head -n 1`"

Step 2: Installation & Testing

Unzip and move the package:

unzip bettercap_linux_amd64_*.zip
mv bettercap /usr/local/bin/

Clean up & test package:

rm README.md LICENSE.md
bettercap -version

If the last command prints the bettercap version e.g.:

InstallBettercap 01.png

the installation was successful.

References