DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library
  1. DZone
  2. Refcards
  3. OAuth Patterns and Anti-Patterns
refcard cover
Refcard #347

OAuth Patterns and Anti-Patterns

As OAuth evolved over the last decade, some of the spec's original elements were replaced by modern, more secure recommendations. These advancements along with the framework's already comprehensive foundation can be challenging to understand, let alone put into practice.

Securing access to APIs and other resources effectively under the OAuth 2.0 protocol requires first learning the components and tools it involves. After a brief rundown of OAuth terminology, this Refcard covers OAuth patterns and anti-patterns, with a particular focus on key security measures relating to client credentials, OAuth flows, access tokens vs. ID tokens, token validation, and more.

Free PDF for Easy Reference
refcard cover

Written By

author avatar Aaron Parecki
Senior Developer Advocate, Okta
Table of Contents
► Introduction ► What is OAuth? ► OAuth Terminology ► Common OAuth Patterns and Anti-Patterns
Section 1

Introduction

OAuth is used all around the world in countless systems to provide secure access to APIs and other data. However, getting it right isn’t always easy. As software development continues to evolve, so do the number of attackers trying to take advantage of flaws within these systems.

This is a preview of the OAuth Patterns and Anti-Patterns Refcard. To read the entire Refcard, please download the PDF from the link above.

Section 2

What is OAuth?

OAuth is the industry-standard framework for securing access to APIs and other resources. In addition to being used for first-party and third-party delegation, it also provides the foundation upon which the OpenID Connect identity and authentication framework is built.

While OAuth provides a lot of the necessary components and tools to build a secure system, it can be a challenge to understand all of the parts that are involved. In particular, OAuth has evolved quite a lot over the last 10 years, and some of the original parts of the spec have been replaced by newer, more secure recommendations.

This is a preview of the OAuth Patterns and Anti-Patterns Refcard. To read the entire Refcard, please download the PDF from the link above.

Section 3

OAuth Terminology

Resource Owner

The “resource owner” is the OAuth 2.0 spec term for what is most often the end user who uses the client application. The user owns some resources stored at the resource server and attempts to log in to the application so that they can access the resources.

User Agent

In the case of a web application, the “user agent” is the web browser being used to access the application. For a mobile application, the user agent is the mobile phone operating system. In both scenarios, the user agent is something that the user trusts that the application does not control.

Client

The term “client” is how OAuth refers to applications. Specifically, it refers to the piece of software that obtains the access token and makes API requests to the resource server. The authorization server’s job is to make sure it only gives access tokens to legitimate clients.

Authorization Server

The "authorization server" is what protects access to the APIs and is responsible for authenticating users and issuing access tokens to clients. The authorization server may have its own policies around which users are allowed to use certain applications, and it can decide how long access tokens are valid based on a number of factors it chooses as well as its own risk assessment.

Resource Server

The “resource server” is what the spec calls the API, or the server that contains the resources being requested by the client application. This may contain a user’s data (e.g., photos, contacts), or it could contain other data that a user is authorized to access. Client applications will make an API request to the resource server with an access token it obtained from the authorization server.

Access Token

An "access token" is a string that the client application uses to make requests to the resource server. The client obtains an access token from the authorization server, usually after asking a user to log in. The resource server needs to know how to validate the access token in order to confirm whether the requests from the client application are legitimate. Access tokens may be random strings or may also be structured tokens such as JWTs.

This is a preview of the OAuth Patterns and Anti-Patterns Refcard. To read the entire Refcard, please download the PDF from the link above.

Section 4

Common OAuth Patterns and Anti-Patterns

Keep Client Credentials Secure

Pattern Only issue client secrets to “confidential clients,” and store them like you’d store any sensitive API keys.
Anti-Pattern
Putting client secrets in a single-page app or mobile app

When you first register an app at the OAuth server, you’ll get a client ID to identify the app, and you may also get a client secret used to authenticate the app. This client secret is effectively the application’s password, and you need to treat it as such. That means making sure it’s kept secure, only sent to the authorization server, and never shared with anyone.

Only certain types of applications have this ability and are known as “confidential clients” in OAuth terms. The most common example of a confidential client is one that runs server-side code (e.g., .NET, Java), where the code on the server can be configured with this client secret, and the secret won’t be visible to users of the application.

On the other hand, “public clients” are applications that don’t have the ability to keep a secret secure, so they aren’t given a client secret in the first place. The most common example of public clients are mobile apps and single-page apps. If you included a client secret in a single-page app, anyone who uses the app would first download the JavaScript code, including the secret, which would then be visible to anyone using the app. These kinds of apps can’t keep secrets secure, so instead, we use an OAuth flow that doesn’t require a secret at all.

Use PKCE Instead of Implicit Flow

Pattern Use the Authorization Code flow with PKCE for public and confidential clients.
Anti-Pattern Using the Implicit flow to get access tokens

The Implicit flow in OAuth 2.0 was created over 10 years ago when browsers worked very differently than they do today. The primary reason the Implicit flow was created was because of an old limitation in browsers that prevented them from making cross-domain requests.

The standard OAuth Authorization Code flow requires that a POST request is made to the OAuth server’s token endpoint. In the past, if the token endpoint was on a different domain than the app, JavaScript would be unable to make this request due to cross-origin limitations. The Implicit flow worked around this limitation by avoiding the POST request, and instead, returning the access token immediately in the redirect, as shown in the figure below:

Figure 1: OAuth Implicit flow

Working around the browser limitations came with the tradeoff of this flow being inherently less secure. The problem is that the access token is delivered to the client through the front channel (the browser redirect), rather than the client retrieving it from the authorization server itself via the back channel. For a more in-depth analysis of the risks, please visit oauth.net/implicit.

Modern browsers no longer have these old limitations, and we can now use the more secure Authorization Code flow from the browser itself. In order to secure this flow without a client secret, we use a mechanism known as PKCE.

Figure 2: OAuth Authorization Code flow

In the PKCE model, the only data going through the less secure front channel is the temporary authorization code rather than the access token itself. The client first generates a PKCE Code Verifier when it starts the request and uses it when exchanging the authorization code for an access token in the second part of the flow. The access token is delivered via the back channel where it can be protected and kept secure in transit.

In short, there isn’t any need for the Implicit flow anymore, and it will be removed in a future update of the OAuth specification. The Authorization Code flow with PKCE provides better security and is the best option to use in place of the Implicit flow.

This is a preview of the OAuth Patterns and Anti-Patterns Refcard. To read the entire Refcard, please download the PDF from the link above.

Like This Refcard? Read More From DZone

related article thumbnail

DZone Article

All You Need to Know About User Session Security
related article thumbnail

DZone Article

Are You Using JWTs for User Sessions Correctly?
related article thumbnail

DZone Article

OAuth 2.0 vs Session Management
related article thumbnail

DZone Article

OAuth 2 Access Token Usage Strategies for Multiple Resources (APIs): Part 1
related refcard thumbnail

Free DZone Refcard

Secrets Management Core Practices
related refcard thumbnail

Free DZone Refcard

Software Supply Chain Security
related refcard thumbnail

Free DZone Refcard

Identity and Access Management
related refcard thumbnail

Free DZone Refcard

Threat Detection

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • [email protected]

Let's be friends: