メインコンテンツまでスキップ

Core Concepts

Explains core concepts for understanding the BotManager policy system.

Sub-documents

Detection Engine

A core component of BotManager that analyzes access requests to determine if they are bots:

  • Applies various policies sequentially
  • Performs static analysis and behavior analysis
  • Real-time judgment and response

Action Mode

Explains how to process requests determined to be bots by policies:

  • Detection Mode: Detected as a bot but access is allowed (only logs are recorded)
  • Blocking Mode: Detected as a bot and access is blocked

Automatic Block Release

Explains the feature where blocked users automatically return to normal users after a set time:

  • Automatic release after the time set by the administrator
  • Counting reset when reconnecting after release

Secondary Verification

Explains how to verify whether it is actually a bot through additional verification when determined to be a bot by behavior analysis policies:

  • CAPTCHA: Image-based human verification test
  • Browser Challenge: Automatic browser environment verification

Overview

The BotManager policy system consists of the following core components:

Core Concepts List

Detection Engine

The detection engine is a core component of BotManager that analyzes access requests to determine if they are bots.

  • Applies various policies sequentially
  • Performs static analysis and behavior analysis
  • Real-time judgment and response

For more details: Detection Engine Operation Principles

Action Mode

The method of processing requests determined to be bots by policies.

ModeDescription
DetectionDetected as a bot but access is allowed
BlockDetected as a bot and access is blocked

For more details: Action Mode

Automatic Block Release

A feature where blocked users automatically return to normal users after a set time.

  • Automatic release after the time set by the administrator
  • Counting reset when reconnecting after release

For more details: Automatic Block Release

Secondary Verification

When determined to be a bot by behavior analysis policies, verifies whether it is actually a bot through additional verification.

Verification TypeDescription
CAPTCHAImage-based human verification test
Browser ChallengeAutomatic browser environment verification

For more details: Secondary Verification

Relationships Between Concepts