Kali Linux 2019.1 setup

✨ deeznutz

✨ Master ✨
Staff member
Joined
May 15, 2017
Messages
981
Likes
760
Points
1,045
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:
  • 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.
In this tutorial, we will only use whonix-gateway, our workstation is kali 2019.1.

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

1-28-300x160.png



Change the default password (username / default password: user / changeme)

Set the time in UTC

Code:
ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
echo UTC0 > /etc/localtime
Disable Tcp Timestamps

Code:
echo “net.ipv4.tcp_timestamps = 0” > /etc/sysctl.d/tcp_timestamps.conf
2-27-300x257.png



We will now update all the packages:

Code:
apt-get update && apt-get upgrade
Configuring Kali Linux 2019.1

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:

3-17-300x270.png



Network configuration

4-5-300x270.png



Launch Kali Linux and configure the network

Code:
leafpad /etc/network/interfaces
and add the lines:

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
5-300x264.png



Reboot the Kali Linux system.
 
Top Bottom