File Access Authorization
IMPORTANT: This feature is only supported on macOS 13 and above.
File Access Authorization allows admins to configure Santa to monitor filesystem paths for potentially unwanted access and optionally deny the operation.
Enabling the Feature
To enable this feature, the FileAccessPolicyPlist
key in the main Santa configuration must contain the path to a configuration file. See the format specified in the Configuration section below. The Santa configuration can also contain the FileAccessPolicyUpdateIntervalSec
that dictates how often the File Access Authorization configuration is re-applied (see the details on Path Globs for more information on what happens during updates).
Configuration
Key | Parent | Type | Required | Santa Version | Description |
---|---|---|---|---|---|
Version | <Root> | String | Yes | v2023.1+ | Version of the configuration. Will be reported in events. |
EventDetailURL | <Root> | String | No | v2023.8+ | When the user gets a block notification, a button can be displayed which will take them to a web page with more information about that event. This URL will be used for all rules unless overridden by a rule-specific option. See the EventDetailURL section below. |
EventDetailText | <Root> | String | No | v2023.8+ | Related to EventDetailURL , controls the button text that will be displayed. (max length = 48 chars) |
WatchItems | <Root> | Dictionary | No | v2023.1+ | The set of configuration items that will be monitored by Santa. |
<Name> | WatchItems | Dictionary | No | v2023.1+ | A unique name that identifies a single watch item rule. This value will be reported in events. The name must be a legal C identifier (i.e., must conform to the regex [A-Za-z_][A-Za-z0-9_]* ). |
Paths | <Name> | Array | Yes | v2023.1+ | A list of either String or Dictionary types that contain path globs to monitor. String type entires will have default values applied for the attributes that can be manually set with the Dictionary type. |
Path | Paths | String | Yes | v2023.1+ | The path glob to monitor. |
IsPrefix | Paths | Boolean | No | v2023.1+ | Whether or not the path glob represents a prefix path. (Default = false ) |
Options | <Name> | Dictionary | No | v2023.1+ | Customizes the actions for a given rule. |
AllowReadAccess | Options | Boolean | No | v2023.1+ | If true, indicates the rule will not be applied to actions that are read-only access (e.g., opening a watched path for reading, or cloning a watched path). If false, the rule will apply both to read-only access and access that could modify the watched path. (Default = false ) |
AuditOnly | Options | Boolean | No | v2023.1+ | If true, operations violating the rule will only be logged. If false, operations violating the rule will be denied and logged. (Default = true ) |
InvertProcessExceptions | Options | Boolean | No | v2023.5+ | If true, logic is inverted for the list of processes defined by the Processes key such that the list becomes the set of processes that will be denied or allowed but audited. (Default = false ) |
EnableSilentMode | Options | String | No | v2023.7+ | If true, Santa will not display a GUI dialog when this rule is violated. |
EnableSilentTTYMode | Options | String | No | v2023.7+ | If true, Santa will not post a message to the controlling TTY when this rule is violated. |
EventDetailURL | Options | String | No | v2023.8+ | Rule-specific URL that overrides the top-level EventDetailURL . |
EventDetailText | Options | String | No | v2023.8+ | Rule-specific button text that overrides the top-level EventDetailText . |
Processes | <Name> | Array | No | v2023.1+ | A list of dictionaries defining processes that are allowed to access paths matching the globs defined with the Paths key. For a process performing the operation to be considered a match, it must match all defined attributes of at least one entry in the list. |
BinaryPath | Processes | String | No | v2023.1+ | A path literal that an instigating process must be executed from. |
TeamID | Processes | String | No | v2023.1+ | Team ID of the instigating process. |
CertificateSha256 | Processes | String | No | v2023.1+ | SHA256 of the leaf certificate of the instigating process. |
CDHash | Processes | String | No | v2023.1+ | CDHash of the instigating process. |
SigningID | Processes | String | No | v2023.1+ | Signing ID of the instigating process. |
PlatformBinary | Processes | Boolean | No | v2023.2+ | Whether or not the instigating process is a platform binary. |
EventDetailURL
When the user gets a file access block notification, a button can be displayed which will take them to a web page with more information about that event.
This property contains a kind of format string to be turned into the URL to send them to. The following sequences will be replaced in the final URL:
Key | Description |
---|---|
%rule_version% | Version of the rule that was violated |
%rule_name% | Name of the rule that was violated |
%file_identifier% | SHA-256 of the binary being executed |
%accessed_path% | The path accessed by the binary |
%username% | The executing user |
%machine_id% | ID of the machine |
%serial% | System’s serial number |
%uuid% | System’s UUID |
%hostname% | System’s full hostname |
Example Configuration
This is an example configuration conforming to the specification outlined above:
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Version</key>
<string>v0.1-experimental</string>
<key>WatchItems</key>
<dict>
<key>UserFoo</key>
<dict>
<key>Paths</key>
<array>
<string>/Users/*/foo</string>
<dict>
<key>Path</key>
<string>/Users/*/tmp/foo</string>
<key>IsPrefix</key>
<true/>
</dict>
</array>
<key>Options</key>
<dict>
<key>AllowReadAccess</key>
<false/>
<key>AuditOnly</key>
<true/>
<key>InvertProcessExceptions</key>
<false/>
</dict>
<key>Processes</key>
<array>
<dict>
<key>BinaryPath</key>
<string>/usr/local/bin/my_foo_writer</string>
<key>TeamID</key>
<string>ABCDEF1234</string>
</dict>
</array>
</dict>
</dict>
</dict>
</plist>
Details
Rule Matching
When an operation occurs on a path that matches multiple configured path globs, the rule containing the “most specific” matching path glob is applied (i.e., the longest matching path).
For example, consider the configured rules and paths:
RULE_1: /tmp/foo [IsPrefix=true]
RULE_2: /tmp/foo.txt [IsPrefix=false]
RULE_3: /tmp [IsPrefix=true]
The following table demonstrates which rule will be applied for operations on a given path:
Operation Path | Rule Applied | Reason |
---|---|---|
/tmp/foo | RULE_1 | Matches prefix, more specific than RULE_3 |
/tmp/foo/bar | RULE_1 | Matches prefix, more specific than RULE_3 |
/tmp/bar | RULE_3 | Matches prefix |
/tmp/foo.txt | RULE_2 | Matches literal, more specific than RULE_1 |
/tmp/foo.txt.tmp | RULE_1 | Matches prefix, more specific than RULE_3 , literal match doesn’t apply |
/foo | N/A | No rules match operations on this path |
IMPORTANT: If a configuration contains multiple rules with duplicate configured paths, only one rule will be applied to the path. It is undefined which configured rule will be used. Administrators should take care not to define configurations that may have duplicate paths.
Path Globs
Configured path globs represent a point in time. That is, path globs are expanded when a configuration is applied to generate the set of monitored paths. This is not a “live” representation of the filesystem. For instance, if a new file or directory is added that would match a glob after the configuration is applied, it is not immediately monitored.
Within the main Santa configuration, the FileAccessPolicyUpdateIntervalSec
key controls how often any changes to the configuration are applied as well as re-evaluating configured path globs to match the current state of the filesystem.
Prefix and Glob Path Evaluation
Combining path globs and the IsPrefix
key in a configuration gives greater control over the paths that rules should match. Consider the configured path globs:
PG_1: /tmp/* [IsPrefix = false]
PG_2: /tmp/* [IsPrefix = true]
PG_3: /tmp/ [IsPrefix = true]
PG_4: /tmp/file1.txt [IsPrefix = false]
And a filesystem that contains:
/
tmp/
file1.txt
file2.txt
dir1/
d1_f1.txt
d1_f2.txt
Now, assume the configuration is applied, and moments later a new file (/tmp/file3_new.txt
) and a new directory (/tmp/dir2_new
) are both created:
PG_1
will match against the two original files within/tmp
and the one directorydir1
itself (but not nested contents).PG_2
will match against the two original files within/tmp
and the one directorydir1
(as well as nested contents).PG_3
will match against all original and newly created files and directories within/tmp
(as well as nested contents).PG_4
will only match/tmp/file1.txt
.
Case Sensitivity
All configured paths are case sensitive (i.e., paths specified in both the Paths
and BinaryPath
configuration keys). The case must match the case of the path as stored on the filesystem.
Hard Links
Due to platform limitations, it is not feasible for Santa to know all links for a given path. To help mitigate bypasses to this feature, Santa will not allow hard links to be created for monitored paths. If hard links previously existed to monitored paths, Santa cannot guarantee that access to watched resources via these other links will be monitored.
Symbolic Links
Configured path globs must refer to resolved paths only. It is not supported to monitor access on symbolic links. For example, consider the configured path globs:
PG_1: /var/audit/ [IsPrefix = true]
PG_2: /private/var/audit/ [IsPrefix = true]
PG_1
will not match any operations because /var
is a symbolic link. PG_2
however is properly configured and will match on access to items in the configured directory.
Logging
When an operation matches a defined rule, and the instigating process did not match any of the defined exceptions in the Processes
key, the operation will be logged. Both string and protobuf logging are supported.
When the EventLogType
configuration key is set to syslog
or file
, an example log message will look like:
action=FILE_ACCESS|policy_version=v0.1-experimental|policy_name=UserFoo|path=/Users/local/tmp/foo/text.txt|access_type=OPEN|decision=AUDIT_ONLY|pid=12|ppid=56|process=cat|processpath=/bin/cat|uid=-2|user=nobody|gid=-1|group=nogroup|machineid=my_id
When the EventLogType
configuration key is set to protobuf
, a log is emitted to match the FileAccess
message in the santa.proto schema.
Default Mute Set
The EndpointSecurity framework maintains a set of paths dubbed the “default mute set” that are particularly difficult for ES clients to handle. Additionally, AUTH events from some of these paths have ES response deadline times set very low. In order to help increase stability of this feature, file accesses from binaries in the default mute set are not currently logged. A list of binaries that will not have operations logged can be found in SNTRuleTable.m. This could be addressed in the future (see Github Issue #1096).