Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Document that *PathRegex does not work on symlinks #1290

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/deployment/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,17 @@ them to. The following sequences will be replaced in the final URL:

For example: `https://sync-server-hostname/%machine_id%/%file_sha%`

### AllowedPathRegex/BlockedPathRegex

These regexes can be used to allow/block binaries based on the executable path.
We strongly discourage the use of this as it can be relatively trivial to bypass
but there are some circumstances where it is the only option.

It's important to note that the path matched against these regexes is the full
absolute path of the binary file. Symlinks in the path will have already been
followed by the time Santa processes the execution and matches against the
regex.

### Static Rules

Static rules are rules that are defined inline in the Santa configuration. These
Expand Down
Loading