MAC Address

MAC Address Spoofing and Tracking Threats
Introduction[edit]
All network cards, both wired and wireless, have a unique identifier called a MAC address. [1] MAC addresses are stored in hardware and are used to assign an address to computers on the local network.
The MAC address is normally not traceable because it is not passively sent to computers beyond the local router. [2] However, other computers on the local network can potentially log it, which would then provide proof that the user's computer connected to that specific network. If users intend to use an untrusted, public network, then MAC spoofing should be considered. [3]
MAC Spoofing Warning[edit]
Auto-connect Risk[edit]
Apart from the difficulty in creating an appropriate MAC address for spoofing purposes, there are also technical hurdles in preventing automatic network connections.
It is futile to prepare a spoofed MAC address if the computer instantly connects to a public network after booting, thereby disclosing the user's real MAC address in the process:
- Kicksecure as a host: Kicksecure automatically connects to the internet after startup.
- USB Wi-Fi Device: Automatic connections might also occur, depending on the configuration.
Burner Wi-Fi USB Sticks[edit]
One immediate workaround for the Wi-Fi card profiling threat is to buy new "burner" Wi-Fi USB sticks from different manufacturers. Take care to disable the computer's native Wi-Fi functionality in the BIOS settings if pursuing this option -- otherwise, the computer's characteristics may have already been logged if it was ever used on an untrusted hotspot. Burner devices should only be enabled for connectivity at the intended public destination. If this advice is ignored and burner devices are used for network connections at locations tied to or regularly visited by the user, it will defeat the original purpose. A different burner stick should be used for each new location to avoid geographical profiling and tracking.
Random MAC Addresses[edit]
The problem with using a random MAC address is that the chosen vendor ID may be non-existent. Even if it exists, it is possible to end up with a vendor ID that has either never been used or has not been used for decades. When spoofing MAC addresses, it is critical to use a popular vendor ID. The initial, second part of the MAC address can safely be random or unique. [5]
Research on this issue is still ongoing. At present, Kicksecure cannot provide detailed instructions on how to create appropriate MAC addresses that fulfill the criteria above.
Other Location Tracking Risks[edit]
Authentication Fingerprinting Techniques[edit]
An authentication technique can fingerprint devices by observing inter-packet timings on a LAN's wire segment; one side effect is that user devices can be tracked. The timing effects result from how various components in a machine create packets. [6] Fortunately, this technique cannot be used to identify devices across the Internet. [7]
This technique can be defeated by introducing random delays in a machine's packet stream. Since there is no issue with impersonating other devices on the LAN, it does not matter that such an authentication system will classify these machines as "unknown." [8]
Additionally, spectrum analyzers have been used to fingerprint the unique electromagnetic (EM) characteristics of a Wi-Fi card. The disposable USB Wi-Fi workaround described above would mitigate this attack. [9]
MAC Spoofing on Different Networks[edit]
Home Connections[edit]
Connectivity Risk[edit]
If the user's home network relies on a cable modem internet connection, the ISP either provides the cable modem device as part of the service or requires pre-registration of the MAC address of a self-provided cable modem for service activation.
If a user manages to hack or change the MAC address of the modem, the service will immediately cease functioning because the IP address assignment is bound to that specific MAC address. Consequently, when connecting from behind a cable modem/NAT router, MAC address spoofing of the computer's Ethernet adapter may be ineffective. If a user is traced, the trackable endpoint will be the MAC address of the cable modem device.
Public Computers[edit]
The MAC address should not be changed in this scenario, as it may attract unwanted administrator attention to the service/user or simply prevent access to the Internet.
Changing MAC Addresses[edit]
Kicksecure[edit]
TODO: Please help test and improve these instructions.
1. Edit the network interfaces file.
- Users: Edit /etc/network/interfaces
2. Install macchanger.
In a terminal, run:
su
apt update && apt install macchanger
3. Change the MAC address.
su
ifconfig wlan0 down
macchanger -a wlan0
ifconfig wlan0 up
If the instructions in Step 1+ did not work, the following steps might work without macchanger. Replace wlan0
with the appropriate device.
su
ifconfig wlan0 down
ifconfig wlan0 hw ether 00:AA:BB:CC:DD:EE
ifconfig wlan0 up
Alternatively, use iproute2 commands to change the MAC address.
ip link set down wlan0
ip link set wlan0 address 00:AA:BB:CC:DD:EE
ip link set up wlan0
4. Complete the MAC address change.
Below iface eth0 inet dhcp
, add:
hwaddress ether 00:00....
5. Optional: Automatically randomize the MAC address on boot.
If desired, add:
pre-up macchanger -e eth0
6. Modify network interface settings.
To prevent new network interfaces from being brought up automatically, comment out the following line:
auto eth0
Then, manually bring up the interface with:
sudo ifup eth0
Qubes Hosts[edit]
Qubes users can manually change MAC addresses in the NetVM by following either the Network Manager or macchanger guides. MAC Address Randomization capability for Wi-Fi has been implemented.
Network: Enable MAC randomization for Wi-Fi connections by default was implemented.
This is currently applied by Debian and Fedora templates only.https://github.com/QubesOS/qubes-issues/issues/938#issuecomment-1221605861
Ethernet MAC randomization by default was denied.https://github.com/QubesOS/qubes-issues/issues/938#issuecomment-1300587911
Consequently, users wanting Ethernet MAC randomization will need to modify their templates manually, including in all newly downloaded templates after OEL deprecation.https://github.com/QubesOS/qubes-issues/issues/938#issuecomment-1300587911
Refer to the following Qubes documentation and related support items for further information and advice:
- Qubes Documentation: Anonymizing Your MAC Address
- Qubes-Users Forum: Instructions for Installing Macchanger Needed
- Explore Local Network Privacy Solutions Beyond MAC Address Randomization
Sources[edit]
See footnotes. [10]
References[edit]
- ↑ https://en.wikipedia.org/wiki/MAC_address
- ↑ Unless the computer is infected with malware
designed to disclose this identifier.
- ↑ https://en.wikipedia.org/wiki/MAC_spoofing
- ↑ Why MAC Address Randomization is not Enough: An Analysis of Wi-Fi Network Discovery Mechanisms
- ↑ Also note that if MAC address changing is always enabled, it might cause connectivity problems on some networks.
- ↑ A Passive Technique for Fingerprinting Wireless Devices with Wired-side Observations
- ↑ The primary weakness of this technique is that it relies on fine-grained packet timing, which is lost due to buffering in switches and routers. Therefore, this technique and similar methods are not suited for identification across the Internet. Instead, it is well-suited for the significant challenge of local network access control and other local network activities like counterfeit detection.
- ↑ Figure 7(a) shows attackers that can vary their packet sizes, change their data rate, and tunnel their packets through another protocol. Figure 7(b) presents attackers that can introduce constant or random delays to the packet stream and load the CPU with intensive applications to overshadow normal behavior. Figure 7(c) shows an attacker that can modify or change its operating system. GTID (the passive fingerprinting method) detects these attacks and classifies all of these devices that generated attack traffic from previously seen devices as unknown.
- ↑ There have also been physical-layer approaches to fingerprinting wireless devices. Radio frequency (RF) emitter fingerprinting uses the distinct EM characteristics that arise from differences in circuit topology and manufacturing tolerances. This approach has a history of use in cellular systems and has more recently been applied to Wi-Fi and Bluetooth emitters. The EM properties fingerprint the unique transmitter of a signal, and these differ from emitter to emitter. This technique requires expensive signal analyzer hardware to be within RF range of the target.
- ↑
License[edit]
Kicksecure MAC Address wiki page Copyright (C) Amnesia <amnesia at boum dot org>
Kicksecure MAC Address wiki page Copyright (C) 2012 - 2025 ENCRYPTED SUPPORT LLC <adrelanos(at)kicksecure.com
(Replace(at)
with@
.)Please DO NOT use e-mail for one of the following reasons: Private Contact: Please avoid e-mail whenever possible. (Private Communications Policy) User Support Questions: No. (See Support.) Leaks Submissions: No. (No Leaks Policy) Sponsored posts: No. Paid links: No. SEO reviews: No. >This program comes with ABSOLUTELY NO WARRANTY; for details see the wiki source code.
This is free software, and you are welcome to redistribute it under certain conditions; see the wiki source code for details.

We believe security software like Kicksecure needs to remain Open Source and independent. Would you help sustain and grow the project? Learn more about our 12 year success story and maybe DONATE!