Whonix is an anonymity, privacy and security operating system. TOR uses as the basis for connections, and Debian as the operating system.
Make sure that a DNS leak is impossible and that malware can be detected on the computer.
Whonix consists of two parts:
Import and configure Whonix in VirtualBox.
After the virtual machine is added, we check the correctness of the connection by checking the automatically starting daemons: timesync and whonixcheck
Change the default password (username / default password: user / changeme)
Set the time in UTC
We will now update all the packages:
At this point, we should note that the whonix gateway is configured as NAT and uses our local connection to access the Internet.
This is the standard configuration, and we recommended Whonix, as well as the USB wireless adapter, and chose the bridge.
Go to General Settings and configure this:
Network configuration
Launch Kali Linux and configure the network
auto eth0
iface eth0 inet static
address 10.152.152.12
netmask 255.255.192.0
gateway 10.152.152.10
save and close
Enter DNS:
Reboot the Kali Linux system.
Make sure that a DNS leak is impossible and that malware can be detected on the computer.
Whonix consists of two parts:
- Whonix Gateway: The OS runs on the TOR network and acts as a gateway.
- A Whonix workstation using only fully isolated connections and connections over the TOR network.
Import and configure Whonix in VirtualBox.
After the virtual machine is added, we check the correctness of the connection by checking the automatically starting daemons: timesync and whonixcheck
Change the default password (username / default password: user / changeme)
Set the time in UTC
Disable Tcp TimestampsCode:
ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
echo UTC0 > /etc/localtime
Code:
echo “net.ipv4.tcp_timestamps = 0” > /etc/sysctl.d/tcp_timestamps.conf
We will now update all the packages:
Configuring Kali Linux 2019.1Code:
apt-get update && apt-get upgrade
At this point, we should note that the whonix gateway is configured as NAT and uses our local connection to access the Internet.
This is the standard configuration, and we recommended Whonix, as well as the USB wireless adapter, and chose the bridge.
Go to General Settings and configure this:
Network configuration
Launch Kali Linux and configure the network
and add the lines:Code:
leafpad /etc/network/interfaces
auto eth0
iface eth0 inet static
address 10.152.152.12
netmask 255.255.192.0
gateway 10.152.152.10
save and close
Enter DNS:
Code:
echo nameserver 10.152.152.10 > /etc/resolv.conf
Reboot the Kali Linux system.