0Pricing
Edge Computing with Cloudflare Workers & Deno · レッスン

レート制限とDDoS対策

レート制限を設定し、Cloudflareのセキュリティ機能を活用して悪用やDDoS攻撃から保護します

「レート制限とDDoS対策」はCoddyKit上の無料Edge Computing with Cloudflare Workers & Denoレッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはEdge Computing with Cloudflare Workers & Deno学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Edge Computing with Cloudflare Workers & Denoコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

Edge Security: Rate Limiting & DDoS

Protecting your edge applications is crucial. In this lesson, we'll explore two powerful security mechanisms: Rate Limiting and DDoS Protection.

These features help keep your applications stable, secure, and available, even under heavy load or malicious attacks.

Why Rate Limit?

Rate limiting controls how many requests a user or IP address can make to your application within a specific timeframe. It's like a bouncer, ensuring fair access and preventing abuse.

  • Prevent Abuse: Stops bots and malicious actors from scraping data or brute-forcing logins.
  • Protect Resources: Reduces strain on your serverless functions and databases.
  • Control Costs: Limits excessive usage that could lead to higher billing.

Cloudflare's Rate Limiting Power

Cloudflare offers robust, configurable rate limiting directly at the edge. This means requests are evaluated and potentially blocked before they even reach your Worker or origin server.

You can define rules based on various criteria like URL path, HTTP method, IP address, and even custom headers.

Defining Your Rate Limiting Rules

When setting up a rate limit, you typically define:

  • Threshold: The maximum number of requests allowed (e.g., 100 requests).
  • Period: The time window over which the threshold applies (e.g., 60 seconds).
  • Action: What happens when the limit is exceeded (e.g., block, challenge, or log).
  • Matching Criteria: Which requests the rule applies to (e.g., specific URL, method).

Practical Rate Limit Example

Imagine you want to protect your login endpoint from brute-force attacks. You could set a rule like this:

If: 10 requests to "/api/login"
From: The same IP address
Within: 60 seconds
Then: Block the IP for 5 minutes

This simple rule significantly enhances your application's security against common threats.

Understanding DDoS Attacks

A Distributed Denial of Service (DDoS) attack aims to overwhelm your application or server with a flood of traffic, making it unavailable to legitimate users.

Unlike simple rate limiting, DDoS attacks often come from many different sources (a "botnet"), making them harder to defend against manually.

Cloudflare's DDoS Shield

Cloudflare provides always-on DDoS protection that automatically detects and mitigates attacks across its global network. This happens transparently, often without you needing to configure anything specific.

It works by analyzing traffic patterns, identifying malicious requests, and filtering them out before they reach your infrastructure.

Cloudflare Security Levels

Cloudflare offers different security levels you can adjust for your domain, impacting how aggressively it challenges suspicious traffic:

  • Essentially Off: Minimal protection.
  • Low: Challenges the most threatening visitors.
  • Medium: Challenges moderate threat visitors.
  • High: Challenges all visitors that have previously exhibited threatening behavior.
  • I'm Under Attack!: Challenges all visitors to mitigate advanced DDoS attacks.

Edge Security Check

Consider the following scenarios. Which security measure is best suited to address each?

Recap: Securing Your Edge

You've learned how Rate Limiting prevents abuse and resource exhaustion from individual sources, while DDoS Protection shields your application from large-scale, coordinated attacks.

Leveraging Cloudflare's edge capabilities for these features means your applications are more resilient, performant, and secure right where they need to be.

よくある質問

「レート制限とDDoS対策」レッスンは無料ですか?

はい。「レート制限とDDoS対策」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Edge Computing with Cloudflare Workers & Denoコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Edge Computing with Cloudflare Workers & Denoコースには全4レッスンが含まれています。

「レート制限とDDoS対策」で何を学びますか?

レート制限を設定し、Cloudflareのセキュリティ機能を活用して悪用やDDoS攻撃から保護します ブラウザで直接実行するハンズオンコードでEdge Computing with Cloudflare Workers & Denoを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Edge Computing with Cloudflare Workers & Denoを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのEdge Computing with Cloudflare Workers & Denoは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。

「レート制限とDDoS対策」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このEdge Computing with Cloudflare Workers & Denoレッスンでコードを書いて実行できますか?

はい。すべてのEdge Computing with Cloudflare Workers & Denoレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. 認証と認可
  2. レート制限とDDoS対策
  3. 安全なシークレット管理
  4. 入力サニタイズとインジェクション対策
← Edge Computing with Cloudflare Workers & Denoに戻る