Identity and access management (IAM)
The discipline of knowing who someone is, what they may reach, and proving both on every request. Directories, authentication, authorisation and lifecycle in one place.
Identity & Access Management →Customer IAM (CIAM)
Identity management for customers rather than employees: self-registration, consent, social login and scale, with the same authentication strength underneath.
Identity & Access Management →Identity as a service (IDaaS)
Identity and access management delivered from the cloud: directory, SSO, MFA and lifecycle as a subscription rather than servers you run.
Identity & Access Management →Directory services
The database of people, groups and devices an organisation authenticates against. Active Directory and LDAP directories are the classic forms; a cloud directory plays the same role for SaaS.
Identity & Access Management →Azure Active Directory (Entra ID)
Microsoft's cloud directory and identity provider, now called Entra ID. Most estates sync it from on-premise Active Directory and let it issue the tokens SaaS applications trust.
Identity & Access Management →Active Directory authentication
Logging in against an on-premise Active Directory domain, historically over Kerberos or NTLM. Remote machines that must still join the domain are exactly the case domain joining over Zero Trust exists for.
Identity & Access Management →LDAP authentication
Authenticating by binding to an LDAP directory with a username and password. Simple and everywhere; also the reason a second factor has to be added in front of it rather than inside it.
Identity & Access Management →JSON Web Token (JWT)
A signed, self-contained token that carries claims about a user. Applications verify the signature instead of calling back to the issuer, which is what makes stateless API authentication possible.
Identity & Access Management →API authentication and authorisation
Proving who is calling an API and deciding what that caller may do: tokens, keys or certificates for the first, scopes and policy for the second. Machine identities need the same rigour as people.
Identity & Access Management →Authentication, authorisation and accounting (AAA)
The three questions every access system answers: who are you, what may you do, and what did you do. RADIUS and TACACS+ are the protocols network equipment uses to ask them.
Identity & Access Management →API key
A long secret string that identifies a calling application. Convenient and dangerous in equal measure: it is a password that never expires unless someone makes it, and it says nothing about the person behind the call.
Identity & Access Management →Email authentication
The set of DNS-published checks (SPF, DKIM and DMARC) that let a receiving mail server verify a message really came from the domain it claims. It protects the brand from impersonation, not the inbox from every threat.
Identity & Access Management →Setting up email authentication
Publishing SPF, signing with DKIM, adding a DMARC policy, monitoring the reports, then moving the policy from monitor to reject. Five steps, each one a DNS record and a decision.
Identity & Access Management →API injection attacks
Attacks that smuggle commands into API input: SQL, NoSQL, command or LDAP injection. The defence is validation and parameterisation at the API, and never trusting the caller more than the token proves.
Identity & Access Management →OWASP API Security Top 10
The most common categories of API vulnerability, ranked. Broken object- and function-level authorisation lead the list, which is why authorisation, not just authentication, decides whether an API is safe.
Identity & Access Management →