diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2023-12-04 20:01:45 +0100 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2023-12-04 20:01:45 +0100 |
commit | b950a1f40b0596dc66af0eeec5fae03989634a4d (patch) | |
tree | af8fb721ce03fdb8a6d4501961c1f00d8ab43d33 | |
parent | b09d501a8d5142e75f667928dfd8cc8f0a61e972 (diff) |
Add info on MAC spoofing
-rw-r--r-- | network.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -37,3 +37,11 @@ Begin scan (no output), list networks, connect: station <device> scan station <device> get-networks station <device> connect SSID + +## MAC spoofing + + sudo ip link set dev eth0 down + sudo ip link set dev eth0 address 00:00:00:00:00:01 + sudo ip link set dev eth0 up + +Or use `macchanger` utility, where you can specify the vendor, device type, etc. |