Core Concepts
📄️ Detection Engine Operation Principles
Explains the overall operation flow and processing logic at each stage of the BotManager detection engine.
📄️ Action Mode
Explains BotManager policy action modes (detection/blocking).
📄️ Automatic Block Release
Explains how BotManager's automatic block release feature works and how to configure it.
📄️ Secondary Verification
Explains BotManager's secondary verification (CAPTCHA, browser challenge) features.
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.
| Mode | Description |
|---|---|
| Detection | Detected as a bot but access is allowed |
| Block | Detected 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 Type | Description |
|---|---|
| CAPTCHA | Image-based human verification test |
| Browser Challenge | Automatic browser environment verification |
For more details: Secondary Verification