1
0
mirror of https://github.com/PrivSec-dev/privsec.dev synced 2025-02-20 18:31:35 -05:00
This commit is contained in:
Tommy 2023-08-16 08:03:29 -07:00 committed by GitHub
parent 2fc3b9bd11
commit 6b83bd3a57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
![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