You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/deployment/profile-tcc.md
+36-1Lines changed: 36 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,26 @@ will need the following information to configure this profile:
37
37
- Permission or Service: `SystemPolicyAllFiles` or `Full-disk Access`
38
38
- Access: Allow
39
39
40
-
#### App/Process #2:
40
+
#### App/Process #2 (Network Extension):
41
+
42
+
:::info Network Extension
43
+
This entry is only required if you are deploying the [network
44
+
extension](network-extension.md). It can be safely omitted otherwise.
45
+
:::
46
+
47
+
- Identifier type: "Bundle ID"
48
+
- Identifier: `com.northpolesec.santa.netd`
49
+
- Code Requirement:
50
+
51
+
```
52
+
identifier "com.northpolesec.santa.netd" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = ZMCG7MLDV9
53
+
```
54
+
55
+
- Statically validate this requirement: False
56
+
- Permission or Service: `SystemPolicyAllFiles` or `Full-disk Access`
@@ -117,6 +136,22 @@ for deploying custom profiles, you can use the following example as a template.
117
136
<key>StaticCode</key>
118
137
<false/>
119
138
</dict>
139
+
<!-- highlight-start -->
140
+
<dict>
141
+
<key>Allowed</key>
142
+
<true/>
143
+
<key>CodeRequirement</key>
144
+
<string>identifier "com.northpolesec.santa.netd" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = ZMCG7MLDV9</string>
145
+
<key>Comment</key>
146
+
<string>Network extension - remove if not deploying santanetd</string>
0 commit comments