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 1708d77..7bc9dc0 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 @@ -24,4 +24,10 @@ Unfortunately, most of the guides I could find recommends randomizing the entire ```rust [format('%0.2x', rand(256) & ~1), (1..5).map { format('%0.2x', rand(256)) }].join(':') -``` \ No newline at end of file +``` + +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 diff --git a/static/images/privacyguides-macos-mac-randomization.png b/static/images/privacyguides-macos-mac-randomization.png new file mode 100644 index 0000000..8457c35 Binary files /dev/null and b/static/images/privacyguides-macos-mac-randomization.png differ