๐ ๐๐ฟ๐ผ๐บ ๐๐ต๐ฒ ๐๐ถ๐ฒ๐น๐ฑ โ Real-World Findings from Security Assessments
๐ฅย ๐ฐ๐ฎ.๐ต%ย of infrastructures Iโve assessedย ๐ฑ๐ผ๐ปโ๐ ๐ฒ๐๐ฎ๐น๐๐ฎ๐๐ฒ ๐น๐ผ๐ด๐ ๐ณ๐ฟ๐ผ๐บ ๐๐ต๐ฒ๐ถ๐ฟ ๐ช๐ถ๐ป๐ฑ๐ผ๐๐ ๐๐ป๐ณ๐ฟ๐ฎ๐๐๐ฟ๐๐ฐ๐๐๐ฟ๐ฒ
Weโve talked about Windows logging โ but thatโs only part of the picture. You also need to ๐ฐ๐ฒ๐ป๐๐ฟ๐ฎ๐น๐ถ๐๐ฒ, ๐ฎ๐ป๐ฎ๐น๐๐๐ฒ, ๐ฎ๐ป๐ฑ ๐ฑ๐ฒ๐๐ฒ๐ฐ๐.
๐ ๏ธ Even basic detections can give you a ๐ต๐๐ด๐ฒ ๐๐ฒ๐ฐ๐๐ฟ๐ถ๐๐ ๐ฏ๐ผ๐ผ๐๐ โ no expensive SIEM needed. Iโve seen massive SIEMs collect data and do nothing useful.
๐ฆ๐๐ฎ๐ฟ๐ ๐๐ถ๐๐ต these low-effort, high-impact detection wins:
๐นย ๐๐๐๐ต๐ฒ๐ป๐๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ฎ๐ถ๐น๐๐ฟ๐ฒ๐
Watch for common brute-force and password spray indicators:
โข 4776 โ Attempted credential validation
โข 4771 โ Kerberos pre-authentication failure
โข 4625 โ Failed logon
โข 4740 โ Account locked out
๐ก On your Domain Controller, ๐๐ฟ๐ ๐๐ต๐ถ๐ ๐พ๐๐ถ๐ฐ๐ธ ๐ฃ๐ผ๐๐ฒ๐ฟ๐ฆ๐ต๐ฒ๐น๐น to find bad password attempts and potential lockouts:
$PDC=Get-ADForest |Select-Object -ExpandProperty RootDomain |Get-ADDomain |Select-Object -ExpandProperty PDCEmulator
$BadPasswordCount=Get-ADUser -LDAPFilter ‘(&(objectCategory=user)(badpwdcount>=3))’ -Server $PDC -Properties Name, UserPrincipalName, BadPWDCount, AccountLockoutTime, LockedOut | Select-Object Name, UserPrincipalName, BadPWDCount, AccountLockoutTime, LockedOut | Sort-Object -Descending -Property BadPWDCount
Were you alerted about these attempts? ๐๐ณ ๐ป๐ผ๐ โ ๐๐ต๐ฒ๐ฟ๐ฒโ๐ ๐๐ผ๐ฟ๐ธ ๐๐ผ ๐ฑ๐ผ.
๐นย ๐ข๐๐ต๐ฒ๐ฟ ๐๐ฒ๐ ๐๐๐ฒ๐ป๐๐ ๐๐ผ ๐ ๐ผ๐ป๐ถ๐๐ผ๐ฟ
โข 1102ย โ Security audit log cleared
โข 104ย โ System/Application log cleared
โข 4765 / 4766ย โ SID History modification attempts
โข 4780ย โ ACL set on admin group members
โข 4794ย โ DSRM password changed
โข 7045ย โ New service installed
๐ฏ Useย ๐ฆ๐๐๐๐ย to track sensitive AD object changes or critical system modifications.
๐ Real visibility ๐ฑ๐ผ๐ฒ๐๐ปโ๐ ๐ฟ๐ฒ๐พ๐๐ถ๐ฟ๐ฒ ๐ฎ ๐ณ-๐ณ๐ถ๐ด๐๐ฟ๐ฒ security budget. These detections are low-cost and high-value.
Letโs create a more comprehensive list. These were just examples.
๐ ๐ช๐ต๐ถ๐ฐ๐ต ๐ฒ๐๐ฒ๐ป๐ ๐๐๐ ๐ฑ๐ผ ๐๐ผ๐ ๐ฟ๐ฒ๐ฐ๐ผ๐บ๐บ๐ฒ๐ป๐ฑ ๐๐ฎ๐๐ฐ๐ต๐ถ๐ป๐ด ๐ผ๐๐ ๐ณ๐ผ๐ฟ?
