Mac 应用程序使用 CoreWLAN 访问 Sandbox 中的 Wi-Fi 的权利是什么?

What is the entitlement for a Mac App to use CoreWLAN to access Wi-Fi in the Sandbox?

蓝牙,例如是 com.apple.security.device.bluetooth.

Apple 当前未在 Entitlement Key Reference

中记录此特定权利

从 WWDC 18 开始,CoreWLAN.framework 被允许进入 macOS 10.1310.14 中的沙箱。但请注意,需要位置授权才能从 Wi-Fi 扫描中获取 BSSID 信息。

旧版本 macOS 的特定权利可以通过使用 codesign 工具找到:

$ codesign -d --entitlements :- /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy
Executable=/System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>com.apple.wifi.anqp</key>
    <true/>
    <key>com.apple.wifi.associate</key>
    <true/>
    <key>com.apple.wifi.events</key>
    <true/>
    <key>com.apple.wifi.events.private</key>
    <true/>
    <key>com.apple.wifi.ibss</key>
    <true/>
    <key>com.apple.wifi.priority.id</key>
    <string>wifi_menu_extra</string>
    <key>com.apple.wifi.priority.internal</key>
    <true/>
    <key>com.apple.wifi.scan</key>
    <true/>
    <key>com.apple.wifi.set_power</key>
    <true/>
    <key>com.apple.wifi.tether.browse</key>
    <true/>
    <key>com.apple.wifi.tether.connect</key>
    <true/>
    <key>keychain-access-groups</key>
    <array>
        <string>apple</string>
    </array>
</dict>
</plist>