less than 1 minute read

Installing Impacket on Kali Linux 2020

Here are my notes to make a successful install of Impacket on Kali Linux version 2020. These were taken from tryhackme.com Step by step commands to run in terminal:

  1. First install python 3:
sudo apt install python3-pip
  1. Next clone the repo to the /opt folder on root of kali:
sudo git clone https://github.com/SecureAuthCorp/impacket.git /opt/impacket
  1. Then install any requirements not already present:
sudo pip3 install -r /opt/impacket/requirements.txt
  1. Change to the “/opt/impact” folder:
cd /opt/impacket
  1. Finally Run the install in that folder:
sudo python3 ./setup.py install