๐ ๏ธย [๐ฃ๐ฟ๐ฎ๐ฐ๐๐ถ๐ฐ๐ฎ๐น ๐๐ถ๐๐] – ๐ฆ๐ฃ๐ก
Go and check your Active Directory for SPNs. You can do so easily with any simple PowerShell script. Example:
____
Get-ADUser -LDAPFilter ‘(&(objectCategory=user)(!(samAccountName=krbtgt)(servicePrincipalName=*)))’ -Properties Name, UserPrincipalName, ServicePrincipalName | Select-Object Name, UserPrincipalName, @{N=”ServicePrincipalName”;E={$_.ServicePrincipalName -join “, “}}
____
(๐ฉ๐๐๐จ ๐๐จ ๐๐ก๐จ๐ค ๐ฅ๐๐ง๐ฉ ๐ค๐ ๐ข๐ฎ ๐ฉ๐ค๐ค๐ก ๐ผ๐ฟ๐๐ง๐ค๐๐)
โOnce you have results, go through the following ๐๐ต๐ผ๐๐ด๐ต๐ ๐ฝ๐ฟ๐ผ๐ฐ๐ฒ๐๐:
Do I know these service accounts?
โ Proceed below
โ You need to investigate
Do I need these service accounts?
โ Proceed below
โ Decommission them
Can these service accounts be migrated to MSA type?
โ Change them
โ Proceed below
Is the password of that account long and complex?
โ You should be good now
โ Proceed below
Improve the password and change it regularly.
This ensures you ๐บ๐ผ๐๐ฒ ๐ฎ๐ ๐น๐ฒ๐ฎ๐๐ ๐ฎ ๐ฏ๐ถ๐ ๐๐ผ๐๐ฎ๐ฟ๐ฑ ๐๐ต๐ฒ ๐บ๐ผ๐ฟ๐ฒ ๐๐ฒ๐ฐ๐๐ฟ๐ฒ Active Directory.
