Skip to content

Commit

Permalink
sources/kerberos: add kiprop to ignored system principals (#11852)
Browse files Browse the repository at this point in the history
  • Loading branch information
rissson authored Oct 29, 2024
1 parent 3775e5b commit dd7e730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blueprints/system/sources-kerberos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ entries:
name: "authentik default Kerberos User Mapping: Ignore system principals"
expression: |
localpart, realm = principal.rsplit("@", 1)
denied_prefixes = ["kadmin/", "krbtgt/", "K/M", "WELLKNOWN/"]
denied_prefixes = ["kadmin/", "krbtgt/", "K/M", "WELLKNOWN/", "kiprop/", "changepw/"]
for prefix in denied_prefixes:
if localpart.lower().startswith(prefix.lower()):
raise SkipObject
Expand Down

0 comments on commit dd7e730

Please sign in to comment.