anonsurf Ported to Kali
I was first introduced to anonsurf when I discovered ParrotOS. It is ParrotOS anonymous mode, which provides a proxy through Tor. While it comes preinstalled on ParrotOS, GitHub user Und3rf10w has built an install script to use it within pen test OS Kali Linux. I have provided the steps below that I used to get anonsurf installed and running successfully in the latest Kali build (2019.4). The provided instructions assume a new fresh install is being used.
Make sure everything is updated
apt-get update
apt-get upgrade
We then have to install git (to copy the ported anonsurf project), and curl which is used to confirm your IP.
apt-get install git -y
apt-get install curl -y
We then clone the GitHub project which has our install script from Und3rf10w.
git clone https://github.com/Und3rf10w/kali-anonsurf.git
Next, we move to the new project folder
cd kali-anonsurf/
Run the installer (make sure to run as root)
./installer.sh
At this point you will need to purge and reinstall iptables
apt-get purge iptables -y
apt-get install iptables -y
Now we can start anonsurf and check our new IP.
anonsurf start
anonsurf ip
The screenshots below illustrate anonsurf working. The port also can overwrite RAM when the box is shutting down via 'Pandora'.


Happy surfing!
Reference:
https://github.com/Und3rf10w/kali-anonsurf
https://github.com/ParrotSec/anonsurf