Kali Linux KVM Guest

Install Virtual Box guest Additions

apt-get install linux-headers-$(uname -r)
cp /media/cdrom0/VBoxLinuxAdditions.run ~/Desktop/
cd ~/Desktop/
chmod 777 VBoxLinuxAdditions.run
./VBoxLinuxAdditions.run

Install TOR in Kali Linux

apt-get install tor
apt-get install vidalia
#Enable privoxy - Privacy Proxy
apt-get install privoxy

# Modify /etc/privoxy/config, add or modify the following lines
listen-address  127.0.0.1:8118
forward-socks4 / 127.0.0.1:9050 .
forward-socks4a / 127.0.0.1:9050 .
forward-socks5 / 127.0.0.1:9050 .

# ADD DNS to TOR on /etc/tor/torrc
DNSPort 53

# Edit /etc/resolv.conf to use local proxyresolv for DNS
nameserver 127.0.0.1

ln -s /usr/lib/proxychain3/proxyresolv /usr/bin
proxychains iceweasel
proxychains nmap -sT -PN -n -sV ~IP_ADDRESS~

# we can config OWASP-ZAP / Burpsuite / Iceweasel to use the following proxy
127.0.0.1:8118
or in Sock
127.0.0.1:9050

Enable SSH

service ssh start