Prevent Device Tracking By Untrusted Access Points
Introduction
Untrusted access points (e.g. your free coffee shop wifi) can recognise and track your device using your device-specific MAC address. The following procedure will cycle your MAC address by default, preventing device tracking by arbitrary access points.
It will also demonstrate how to declare a stable MAC address for trusted access points (e.g. your office ethernet). This is used, for example, by a trustworthy syadmin to assign you a permanent IP address.
(This technique is sometimes called "MAC address spoofing".)
Steps
- Install macchanger. When prompted, answer "Yes" to cycle your MAC address.
sudo apt install macchanger
- List all known connections
nmcli connection show
- Enable a stable address for trusted connection (replace "Office Wi-Fi" with the name of the trusted connection).
nmcli connection modify "Office Wi-Fi" \ wifi.cloned-mac-address stable
- Repeat step 3 for all trusted connections.
- Make a connection
- List all known connections and note the Device of the active connection
nmcli connection show
- Confirm that your "current" and "permanent" MAC addresses are different (replace DEVICE with the value from step 6)
macchanger --show DEVICE # for example, macchanger --show wlp1s0
Notes
- macchanger runs with the --ending setting, so vendor bytes remain the same
- For trusted connections a third, stable address will be used. This can be confirmed in Network Settings under the "Identity" tab. The "Cloned address" field will show "stable". Use the following command to find out the MAC address (replace "CONNECTION NAME" with the connection name):
nmcli connection show nmcli connection show "CONNECTION NAME" | grep mac-address
- Tested with the following versions:
- macchanger-1.7.0-5.4
- network-manager-1.14.6-2
Alternate configuration
Alternatively you can trust all access points, and cycle your MAC address only for untrusted access points. In this case you don't need to install macchanger, just use the following command (replace "CONNECTION NAME" with the connection name):
nmcli connection modify "CONNECTION NAME" wifi.cloned-mac-address random
References
- Last Author
- d3vid
- Last Edited
- May 23 2019, 12:34