Created
January 22, 2020 16:17
-
-
Save csandker/a4165b68d3907c2bd7a4a4848f22884b to your computer and use it in GitHub Desktop.
Kerberos Delegation Checks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS C:\Users\Clark.Kent\Desktop> ## Unconstrained Delegation | |
PS C:\Users\Clark.Kent\Desktop> ([adsisearcher]'(userAccountControl:1.2.840.113556.1.4.803:=524288)').FindAll() | |
Path Properties | |
---- ---------- | |
LDAP://CN=DC01,OU=Domain Controllers,DC=MonkeyIsland,DC=local {ridsetreferences, logoncount, codepage, objectcategor... | |
LDAP://CN=HTTPSvc,CN=Users,DC=MonkeyIsland,DC=local {givenname, codepage, objectcategory, dscorepropagatio... | |
PS C:\Users\Clark.Kent\Desktop> ## Constrained Delegation | |
PS C:\Users\Clark.Kent\Desktop> ([adsisearcher]"(msds-allowedtodelegateto=*)").FindAll() | |
Path Properties | |
---- ---------- | |
LDAP://CN=SQLSvc,CN=Users,DC=MonkeyIsland,DC=local {givenname, codepage, objectcategory, dscorepropagationdata...} | |
LDAP://CN=MSSQL,CN=Users,DC=MonkeyIsland,DC=local {givenname, codepage, objectcategory, dscorepropagationdata...} | |
PS C:\Users\Clark.Kent\Desktop> ## Constrained Delegation with allowed Protocol Tranisition | |
PS C:\Users\Clark.Kent\Desktop> ([adsisearcher]'(userAccountControl:1.2.840.113556.1.4.803:=16777216)').FindAll() | |
Path Properties | |
---- ---------- | |
LDAP://CN=MSSQL,CN=Users,DC=MonkeyIsland,DC=local {givenname, codepage, objectcategory, dscorepropagationdata...} | |
PS C:\Users\Clark.Kent\Desktop> ## Resource Based Constrained Delegation | |
PS C:\Users\Clark.Kent\Desktop> ([adsisearcher]"(msds-AllowedToActOnBehalfOfOtherIdentity=*)").FindAll() | |
Path Properties | |
---- ---------- | |
LDAP://CN=EXCHANGE01,CN=Computers,DC=MonkeyIsland,DC=local {logoncount, codepage, objectcategory, iscriticalsystemob... | |
PS C:\Users\Clark.Kent\Desktop> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment