Difference between revisions of "Install Bettercap on Kali Linux"

From Embedded Lab Vienna for IoT & Security
Jump to navigation Jump to search
(Created page with "== Summary == This documentation describes how to install bettercap 2.x on Kali Linux == Requirements == * Operating system: Kali Linux amd64 2019.2 * Packages: wget unzip...")
 
Line 8: Line 8:
* Packages: wget unzip  
* Packages: wget unzip  


== Description ==
== Installation ==


=== Step 1 ===
=== Step 1 ===

Revision as of 07:18, 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 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

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