diff --git a/content/posts/macos/Properly Generate a Randomize MAC Address on macOS.md b/content/posts/macos/Properly Generate a Randomize MAC Address on macOS.md index 7bc9dc0..1049f58 100644 --- a/content/posts/macos/Properly Generate a Randomize MAC Address on macOS.md +++ b/content/posts/macos/Properly Generate a Randomize MAC Address on macOS.md @@ -26,8 +26,10 @@ Unfortunately, most of the guides I could find recommends randomizing the entire [format('%0.2x', rand(256) & ~1), (1..5).map { format('%0.2x', rand(256)) }].join(':') ``` -This is a completely randomized MAC address, which is not what we want. - Or this snippet from PrivacyGuides: -![PrivacyGuides macOS MAC Randomization](/images/privacyguides-macos-mac-randomization.png) \ No newline at end of file +![PrivacyGuides macOS MAC Randomization](/images/privacyguides-macos-mac-randomization.png) + +These will give you completely randomized MAC addresses, which is not what we want. + +### Doing it the Proper Way \ No newline at end of file