0Pricing
OAuth2 & OpenID Connect Deep Dive · บทเรียน

PKCE สำหรับไคลเอ็นต์สาธารณะ

ทำความรู้จัก Proof Key for Code Exchange (PKCE) และวิธีที่ช่วยปกป้องไคลเอ็นต์สาธารณะ เช่น แอปมือถือ จากการโจมตีดักจับรหัสอนุญาตสิทธิ์

PKCE สำหรับไคลเอ็นต์สาธารณะ เป็นบทเรียน OAuth2 & OpenID Connect Deep Dive ฟรีบน CoddyKit นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน OAuth2 & OpenID Connect Deep Dive และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส OAuth2 & OpenID Connect Deep Dive มีบทเรียนทั้งหมด 4 บทเรียน

บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ

Public Clients & No Secrets

Imagine a mobile app or a Single-Page Application (SPA) running in a browser. These are known as public clients in OAuth2.

  • They run on devices or environments that can't reliably keep a secret.
  • Unlike a server-side application, they can't securely store a client secret.

This lack of a secret creates a security challenge, making them vulnerable to certain attacks.

Authorization Code Interception

Without a client secret, public clients face a specific risk: the Authorization Code Interception Attack.

  • An attacker might intercept the authorization code sent back to your app.
  • If they get the code, and there's no client secret to verify, they could exchange it for an access token.

This means an attacker could gain access to a user's resources, impersonating your application.

PKCE: Protecting Public Clients

To protect public clients from interception attacks, OAuth2 introduced Proof Key for Code Exchange (PKCE), pronounced "pixy."

  • PKCE adds a dynamic secret to the authorization code flow.
  • This secret is created by the client for each authorization request.

Even if an attacker intercepts the authorization code, they won't have this secret, preventing them from exchanging the code for tokens.

Code Verifier: The Client's Secret

At the heart of PKCE is the code_verifier. It's a cryptographically random string generated by the client application for each authorization attempt.

  • It's a high-entropy secret, meaning it's long and hard to guess.
  • The client keeps this code_verifier private and never sends it directly to the authorization endpoint.

Think of it as a one-time password your app generates and remembers.

Code Challenge: The Public Proof

Instead of sending the code_verifier, the client sends a code_challenge to the authorization server.

  • The code_challenge is a transformed version of the code_verifier.
  • The transformation method (e.g., SHA256 hash then Base64Url encode) is specified by code_challenge_method.

This allows the authorization server to verify the client later without ever knowing the actual code_verifier upfront.

PKCE Flow: Auth Request

Let's trace the PKCE flow. First, the public client (your app) prepares for authorization:

  1. It generates a unique code_verifier.
  2. It transforms this into a code_challenge using S256 (SHA256 hash + Base64Url encoding).
  3. It then sends an authorization request to the Authorization Server, including the code_challenge and code_challenge_method.

Example parameters: code_challenge=xyz&code_challenge_method=S256

PKCE Flow: Auth Code Grant

Upon receiving the authorization request with the code_challenge:

  1. The Authorization Server stores the received code_challenge and its method.
  2. It authenticates the user and obtains their consent.
  3. It then redirects the user back to the client's registered redirect URI, providing an authorization code.

At this point, the client still holds its code_verifier locally.

PKCE Flow: Token Request

Now, with the authorization code in hand, the client needs to exchange it for an access token:

  1. The client makes a POST request to the Authorization Server's token endpoint.
  2. This request includes the authorization code AND the original code_verifier it generated earlier.

This is where the magic happens! The code_verifier acts as proof that this client is the legitimate one.

PKCE Flow: Verification & Tokens

When the Authorization Server receives the token request with the code_verifier:

  1. It recalculates the code_challenge using the provided code_verifier and the stored code_challenge_method.
  2. It compares this newly calculated challenge with the code_challenge it stored in Step 1.
  3. If they match, the client is verified, and the Authorization Server issues access and refresh tokens. Otherwise, the request is denied.

Generating Verifier & Challenge

Here's a simple Java example demonstrating how to generate a code_verifier and its corresponding code_challenge using the S256 method. This is a core part of PKCE implementation.

Try running the code to see the generated values!

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Base64;

public class Main {

    public static void main(String[] args) throws NoSuchAlgorithmException {
        // 1. Generate a secure random code_verifier
        SecureRandom sr = new SecureRandom();
        byte[] codeVerifierBytes = new byte[32]; // 32 bytes = 256 bits
        sr.nextBytes(codeVerifierBytes);
        String codeVerifier = Base64.getUrlEncoder().withoutPadding().encodeToString(codeVerifierBytes);

        // 2. Derive the code_challenge using S256 (SHA256 + Base64Url-encode)
        MessageDigest md = MessageDigest.getInstance("SHA-256");
        byte[] digest = md.digest(codeVerifier.getBytes(java.nio.charset.StandardCharsets.US_ASCII));
        String codeChallenge = Base64.getUrlEncoder().withoutPadding().encodeToString(digest);

        System.out.println("Code Verifier: " + codeVerifier);
        System.out.println("Code Challenge: " + codeChallenge);
        System.out.println("Method: S256");
    }
}

PKCE Quick Check

PKCE adds a vital layer of security for public clients. Which of the following best describes the primary problem PKCE solves?

Recap: PKCE's Security Layer

We've learned about PKCE, a crucial security extension for OAuth2, especially for public clients like mobile apps and SPAs.

  • Public clients can't securely store client secrets.
  • PKCE uses a one-time code_verifier and its transformed code_challenge to verify the legitimate client.
  • This protects against Authorization Code Interception attacks, ensuring only the intended client can exchange the authorization code for tokens.

PKCE makes OAuth2 flows much more secure for applications that operate in less trusted environments.

คำถามที่พบบ่อย

บทเรียน “PKCE สำหรับไคลเอ็นต์สาธารณะ” ฟรีหรือไม่

ใช่ — ข้อความเต็มของ “PKCE สำหรับไคลเอ็นต์สาธารณะ” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส OAuth2 & OpenID Connect Deep Dive ให้อัปเกรดเป็น CoddyKit PRO คอร์ส OAuth2 & OpenID Connect Deep Dive มีบทเรียนทั้งหมด 4 บทเรียน

คุณจะเรียนรู้อะไรในบทเรียน “PKCE สำหรับไคลเอ็นต์สาธารณะ”

ทำความรู้จัก Proof Key for Code Exchange (PKCE) และวิธีที่ช่วยปกป้องไคลเอ็นต์สาธารณะ เช่น แอปมือถือ จากการโจมตีดักจับรหัสอนุญาตสิทธิ์ คุณปฏิบัติ OAuth2 & OpenID Connect Deep Dive ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน

คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน OAuth2 & OpenID Connect Deep Dive หรือไม่

ไม่จำเป็นต้องมีประสบการณ์มาก่อน OAuth2 & OpenID Connect Deep Dive บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน

บทเรียน “PKCE สำหรับไคลเอ็นต์สาธารณะ” ใช้เวลานานแค่ไหน

บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย

ฉันเขียนและรันโค้ดในบทเรียน OAuth2 & OpenID Connect Deep Dive นี้ได้ไหม

ได้ บทเรียน OAuth2 & OpenID Connect Deep Dive ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ

บทเรียนทั้งหมดในหลักสูตรนี้

  1. PKCE สำหรับไคลเอ็นต์สาธารณะ
  2. โทเค็นต่ออายุและขอบเขต
  3. ข้อมูลรับรองรหัสผ่านของเจ้าของทรัพยากร
  4. การแลกเปลี่ยนโทเค็น (RFC 8693)
← กลับไปที่ OAuth2 & OpenID Connect Deep Dive