This folder contains my cybersecurity project focused on MAC address spoofing using the macchanger utility in Linux.
The objective was to understand how MAC addresses function in local networking and how changing them can impact device identity and access.
- Kali Linux
- Terminal
- macchanger
- ip / ifconfig
- Understand the purpose and structure of MAC addresses
- Perform MAC spoofing (both random and manual)
- Analyze the spoofed MAC address in system and optional traffic captures
- Revert safely to the original MAC address
ip link showThe active interface was identified as eth0.
sudo ip link set eth0 downReason: MAC addresses can only be changed when the interface is disabled.
Random MAC:
sudo macchanger -r eth0Manual MAC:
sudo macchanger --mac=00:11:22:33:44:55 eth0macchanger showed:
- Permanent MAC
- Current MAC
- New (spoofed) MAC
sudo ip link set eth0 upmacchanger -s eth0or
ifconfig eth0sudo ip link set eth0 down
sudo macchanger -p eth0
sudo ip link set eth0 upRebooting also resets the MAC to its permanent hardware value.
| File | Description |
|---|---|
MAC_Address_Spoofing_Report.docx |
Full documentation of the spoofing process |
⚠This project was conducted in a safe, isolated lab environment and is for educational purposes only.