-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentitlements.plist
More file actions
25 lines (22 loc) · 848 Bytes
/
entitlements.plist
File metadata and controls
25 lines (22 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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>
<!-- App Sandbox: Restrict app capabilities for defense in depth -->
<key>com.apple.security.app-sandbox</key>
<true/>
<!-- Network: Outbound connections for GitHub API -->
<key>com.apple.security.network.client</key>
<true/>
<!-- File Access: Read/write to user-selected files -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<!-- Hardened Runtime: Deny dangerous capabilities -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<false/>
<key>com.apple.security.cs.disable-library-validation</key>
<false/>
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<false/>
</dict>
</plist>