Configuring OAuth 2.0 Authorization Flow
Overview
Configure secure OAuth 2.0 authorization flows including Authorization Code with PKCE, Client Credentials, and Device Authorization Grant. This skill covers flow selection, PKCE implementation, token lifecycle management, scope design, and alignment with OAuth 2.1 security requirements.
When to Use
- When deploying or configuring configuring oauth2 authorization flow capabilities in your environment
- When establishing security controls aligned to compliance requirements
- When building or improving security architecture for this domain
- When conducting security assessments that require this implementation
Prerequisites
- Familiarity with identity access management concepts and tools
- Access to a test or lab environment for safe execution
- Python 3.8+ with required dependencies installed
- Appropriate authorization for any testing activities
Objectives
- Implement Authorization Code flow with PKCE for public and confidential clients
- Configure Client Credentials flow for machine-to-machine communication
- Design least-privilege scope hierarchies
- Implement secure token storage, refresh, and revocation
- Apply OAuth 2.1 best practices and RFC 9700 security recommendations
- Validate token integrity and prevent common OAuth attacks
Key Concepts
OAuth 2.0 Grant Types
- Authorization Code + PKCE: Recommended for all client types (web, mobile, SPA). PKCE is mandatory in OAuth 2.1.
- Client Credentials: Machine-to-machine authentication without user context.
- Device Authorization Grant (RFC 8628): For input-constrained devices (smart TVs, CLI tools).
- Refresh Token: Long-lived token to obtain new access tokens without re-authentication.
PKCE (Proof Key for Code Exchange)
PKCE (RFC 7636) prevents authorization code interception attacks:
- Client generates random
code_verifier (43-128 characters, unreserved URI chars)
- Client computes
code_challenge = BASE64URL(SHA256(code_verifier))
- Authorization request includes
code_challenge and code_challenge_method=S256
- Token request includes original
code_verifier
- Server validates
SHA256(code_verifier) matches stored code_challenge
Token Types
- Access Token: Short-lived (5-60 min), bearer or DPoP-bound
- Refresh Token: Long-lived, single-use with rotation
- ID Token (OIDC): JWT containing user identity claims
Workflow
Step 1: Authorization Code Flow with PKCE
- Generate cryptographically random code_verifier (min 43 chars)
- Compute code_challenge using S256 method
- Redirect user to authorization endpoint with parameters:
- response_type=code
- client_id, redirect_uri, scope, state
- code_challenge, code_challenge_method=S256
- User authenticates and consents
- Authorization server redirects with authorization code
- Exchange code + code_verifier for tokens at token endpoint
- Validate state parameter matches original value
Step 2: Scope Design
- Define granular scopes:
read:users, write:orders, admin:settings
- Follow least-privilege: request minimum scopes needed
- Implement scope validation on resource server
- Document scope hierarchy and consent requirements
Step 3: Token Security
- Store tokens securely (httpOnly cookies for web, keychain for mobile)
- Implement token refresh with rotation (one-time-use refresh tokens)
- Set appropriate expiration: access tokens 5-15 min, refresh tokens 8-24 hrs
- Enable DPoP (Demonstration of Proof-of-Possession) for sender-constrained tokens
- Implement token revocation endpoint
Step 4: Client Credentials Flow
- Register service client with client_id and client_secret
- Request token: POST /oauth/token with grant_type=client_credentials
- Include scope for required permissions
- Store client_secret securely (vault, env vars, not code)
- Implement certificate-based client authentication for higher assurance
Step 5: Security Hardening
- Enforce PKCE for all authorization code flows
- Use exact redirect URI matching (no wildcards)
- Implement CSRF protection with state parameter
- Enable refresh token rotation and revocation on reuse detection
- Apply RFC 9700 security best practices
- Block implicit grant and ROPC (removed in OAuth 2.1)
Security Controls
| Control |
NIST 800-53 |
Description |
| Access Control |
AC-3 |
Token-based access enforcement |
| Authentication |
IA-5 |
Client credential management |
| Session Management |
SC-23 |
Token lifecycle management |
| Audit |
AU-3 |
Log all token issuance and revocation |
| Cryptographic Protection |
SC-13 |
PKCE and token signing |
Common Pitfalls
- Using implicit grant (removed in OAuth 2.1) instead of authorization code + PKCE
- Storing tokens in localStorage (XSS vulnerable) instead of httpOnly cookies
- Not validating state parameter enabling CSRF attacks
- Using wildcard redirect URIs allowing open redirect exploitation
- Not implementing refresh token rotation allowing token theft persistence
Verification
1---2name: configuring-oauth2-authorization-flow3description: Configure secure OAuth 2.0 authorization flows including Authorization Code with PKCE, Client Credentials, and Device Authorization Grant. This skill covers flow selection, PKCE implementation, token4license: Apache-2.05---6# Configuring OAuth 2.0 Authorization Flow78## Overview9Configure secure OAuth 2.0 authorization flows including Authorization Code with PKCE, Client Credentials, and Device Authorization Grant. This skill covers flow selection, PKCE implementation, token lifecycle management, scope design, and alignment with OAuth 2.1 security requirements.101112## When to Use1314- When deploying or configuring configuring oauth2 authorization flow capabilities in your environment15- When establishing security controls aligned to compliance requirements16- When building or improving security architecture for this domain17- When conducting security assessments that require this implementation1819## Prerequisites2021- Familiarity with identity access management concepts and tools22- Access to a test or lab environment for safe execution23- Python 3.8+ with required dependencies installed24- Appropriate authorization for any testing activities2526## Objectives27- Implement Authorization Code flow with PKCE for public and confidential clients28- Configure Client Credentials flow for machine-to-machine communication29- Design least-privilege scope hierarchies30- Implement secure token storage, refresh, and revocation31- Apply OAuth 2.1 best practices and RFC 9700 security recommendations32- Validate token integrity and prevent common OAuth attacks3334## Key Concepts3536### OAuth 2.0 Grant Types371. **Authorization Code + PKCE**: Recommended for all client types (web, mobile, SPA). PKCE is mandatory in OAuth 2.1.382. **Client Credentials**: Machine-to-machine authentication without user context.393. **Device Authorization Grant (RFC 8628)**: For input-constrained devices (smart TVs, CLI tools).404. **Refresh Token**: Long-lived token to obtain new access tokens without re-authentication.4142### PKCE (Proof Key for Code Exchange)43PKCE (RFC 7636) prevents authorization code interception attacks:441. Client generates random `code_verifier` (43-128 characters, unreserved URI chars)452. Client computes `code_challenge = BASE64URL(SHA256(code_verifier))`463. Authorization request includes `code_challenge` and `code_challenge_method=S256`474. Token request includes original `code_verifier`485. Server validates `SHA256(code_verifier)` matches stored `code_challenge`4950### Token Types51- **Access Token**: Short-lived (5-60 min), bearer or DPoP-bound52- **Refresh Token**: Long-lived, single-use with rotation53- **ID Token (OIDC)**: JWT containing user identity claims5455## Workflow5657### Step 1: Authorization Code Flow with PKCE581. Generate cryptographically random code_verifier (min 43 chars)592. Compute code_challenge using S256 method603. Redirect user to authorization endpoint with parameters:61 - response_type=code62 - client_id, redirect_uri, scope, state63 - code_challenge, code_challenge_method=S256644. User authenticates and consents655. Authorization server redirects with authorization code666. Exchange code + code_verifier for tokens at token endpoint677. Validate state parameter matches original value6869### Step 2: Scope Design70- Define granular scopes: `read:users`, `write:orders`, `admin:settings`71- Follow least-privilege: request minimum scopes needed72- Implement scope validation on resource server73- Document scope hierarchy and consent requirements7475### Step 3: Token Security76- Store tokens securely (httpOnly cookies for web, keychain for mobile)77- Implement token refresh with rotation (one-time-use refresh tokens)78- Set appropriate expiration: access tokens 5-15 min, refresh tokens 8-24 hrs79- Enable DPoP (Demonstration of Proof-of-Possession) for sender-constrained tokens80- Implement token revocation endpoint8182### Step 4: Client Credentials Flow831. Register service client with client_id and client_secret842. Request token: POST /oauth/token with grant_type=client_credentials853. Include scope for required permissions864. Store client_secret securely (vault, env vars, not code)875. Implement certificate-based client authentication for higher assurance8889### Step 5: Security Hardening90- Enforce PKCE for all authorization code flows91- Use exact redirect URI matching (no wildcards)92- Implement CSRF protection with state parameter93- Enable refresh token rotation and revocation on reuse detection94- Apply RFC 9700 security best practices95- Block implicit grant and ROPC (removed in OAuth 2.1)9697## Security Controls98| Control | NIST 800-53 | Description |99|---------|-------------|-------------|100| Access Control | AC-3 | Token-based access enforcement |101| Authentication | IA-5 | Client credential management |102| Session Management | SC-23 | Token lifecycle management |103| Audit | AU-3 | Log all token issuance and revocation |104| Cryptographic Protection | SC-13 | PKCE and token signing |105106## Common Pitfalls107- Using implicit grant (removed in OAuth 2.1) instead of authorization code + PKCE108- Storing tokens in localStorage (XSS vulnerable) instead of httpOnly cookies109- Not validating state parameter enabling CSRF attacks110- Using wildcard redirect URIs allowing open redirect exploitation111- Not implementing refresh token rotation allowing token theft persistence112113## Verification114- [ ] Authorization Code + PKCE flow completes successfully115- [ ] PKCE code_challenge validated at token endpoint116- [ ] State parameter prevents CSRF117- [ ] Access tokens expire within configured lifetime118- [ ] Refresh token rotation issues new refresh token each use119- [ ] Token revocation invalidates both access and refresh tokens120- [ ] Client Credentials flow works for service-to-service calls121- [ ] Scopes correctly enforced at resource server