+ 1
Python spoofer script
I’m setting up a home network and want to spoof my computers Mac before it reaches the router any ideas
1 Antwort
0
You can just do that in the windows device management.
If you need to do it in code, powershell can do it:
Set-NetAdapter -Name "Ethernet 1" -MacAddress "00-10-18-57-1B-0D"
If you need to do it in python I bet writing a python script that runs the powershell code above is the fastest way to do it.