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