Difference between revisions of "Install Bettercap on Kali Linux"

From Embedded Lab Vienna for IoT & Security
Jump to navigation Jump to search
Line 10: Line 10:
== Installation ==
== Installation ==


=== Step 1 ===
=== Step 1: Download ===


Download the latest version of bettecap:
Download the latest version of bettecap:
Line 16: Line 16:
  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`"
  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 ===
=== Step 2: Installation & Testing ===


Unzip and move the package:
Unzip and move the package:

Revision as of 07:19, 25 July 2019

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