Skip to main content

What is ITDR?

Status: Scaffold — content in progress

Identity Threat Detection and Response (ITDR) is the discipline of detecting threats that abuse identity systems and credentials, and responding to contain and remediate those threats.

The term was coined by Gartner in 2022 to name a category that had been practiced informally for years but lacked a unified label.

ITDR Scope

ITDR covers threats across the full identity lifecycle:

StageThreat Examples
Credential acquisitionPhishing, credential stuffing, password spray
Authentication abuseMFA bypass, token theft, Pass-the-Hash
Authorization escalationACL abuse, role assignment manipulation, RBAC misconfiguration
Lateral movement via identityKerberoasting, Pass-the-Ticket, SAML token reuse
Persistence via identityBackdoor accounts, added credentials, OAuth app persistence
Exfiltration via identityData access through legitimate credentials

ITDR vs Adjacent Disciplines

DisciplineFocusRelationship to ITDR
SIEMLog aggregation and correlationITDR uses SIEM as a data source
EDREndpoint process and file telemetryEDR catches identity attacks that touch the endpoint (LSASS, token manipulation)
IDP securityIdentity provider hardeningITDR detects when the IDP is abused
PAMPrivileged access managementPAM reduces the attack surface; ITDR detects abuse when PAM is bypassed
UEBAUser and entity behavior analyticsUEBA is a detection technique within ITDR

The ITDR Detection Chain (This Handbook)

Understand the protocol → Know the attack primitive → Map required telemetry → Write detection → Validate in lab
  1. Protocol knowledge (Section 02): understand how Kerberos, OAuth, SAML, etc. work — because you cannot detect abuse without understanding normal behavior
  2. Attack knowledge (Section 04): understand what the attacker does, which evidence it leaves, which ATT&CK technique it maps to
  3. Detection engineering (Section 05): write rules against the telemetry the attack generates
  4. Lab validation (Sections 03 + 06): run the attack in a controlled environment and verify your detection fires

Key Identity Sources for Detection

SourceKey Signals
Windows Security Event Log4624, 4625, 4648, 4672, 4768, 4769, 4776
Active Directory audit logObject creation/modification, ACL changes, replication events
Entra ID Sign-In logSign-in risk, location, MFA result, conditional access outcome
Entra ID Audit logRole assignments, app registrations, PIM activations
Okta System LogAuthentication events, admin actions, policy evaluations
AWS CloudTrailAssumeRole, GetSessionToken, privilege changes
Azure Activity logRole assignments, resource access via identity
TopicLink
Identity Attack Surfaceidentity-attack-surface.md
Identity Frameworksidentity-frameworks.md
Detection Frameworkdetection-framework