How to change your MAC address in Kali Linux

The MAC Changer tool is what we will be using to change our MAC address in Kali Linux. Simply open up a terminal in Kali to get started!

First, we can use the macchanger -s eth0 command to see what our current MAC address status is:

If you want to randomly generate a new MAC address, you can do so by using macchanger -r eth0 as seen below:

We can also change the MAC address to something specific by using macchanger -m and then specifying the specific address we want for eth0:

Lastly, you can view a list of MAC address prefixes for specific vendors if you have a particular vendor in mind that you want to change your address to. We can view this list with macchanger -l as seen here:

Installing Nwipe on Ubuntu Desktop / Creating a DBAN workstation

Nwipe is a fork of the Darik’s Boot and Nuke (DBAN) tool. The purpose of a DBAN is to securely erase a hard disk until the data on it is permanently removed. I will be showing you how to install and use the Nwipe tool on Ubuntu Desktop 19.04 (Though this should be the same process for any version of Ubuntu Desktop).

  1. Open the terminal in Ubuntu and type the following command:
    sudo apt install nwipe
  2. Once the installation is finished, type the following command to open the nwipe tool:
    sudo nwipe
  3. To select the drive you want to wipe, you can navigate with the up/down arrow keys and then press the space bar to select that drive for wiping. Be careful not to select the drive that your OS is installed on, or you will compromise your workstation.
  4. At the bottom of the terminal, Nwipe will give you options to modify the method you want to use for wiping, how many rounds you want, whether or not to verify each pass, and what PRNG you want to use. Typically, I will modify the method and change it to “DoD 5220.22-M” and leave everything else at its default.
  5. Press the Shift+S keys in combination to begin the wiping process. This process can take quite a while, and the program will keep you updated you under the “Statistics” column what your runtime is and the estimated amount of time left for the wipe.
  6. When the wipe is finished, you can quit the program by using the Ctrl+C keys in combination.
This is how you install the nwipe program
Using the command sudo nwipe will open up Nwipe. Press the spacebar to select the drive you would like to wipe.
Press the M key to modify what method you would like to use. Press space to select the method
Press the Ctrl+S keys in combination t0 begin the wiping process. The remaining runtime and other statistics can be monitored under the Statistics column.