> For the complete documentation index, see [llms.txt](https://help.aikido.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.aikido.dev/docs/docs-ja/pentesuto/configure-a-pentest/setting-up-authenticated-testing/handling-captcha-challenges.md).

# Captcha チャレンジの処理

多くのアプリケーションでは、Captcha などのボット対策機構が実装されています。使用されている Captcha の種類によっては、エージェントがこれらを自動的に解決できます。

## Aikido はこれらの CAPTCHA を自力で解決できます

以下は、エージェントが自律的に解決でき、追加の操作が不要なチャレンジタイプの一覧です。

|                          |
| ------------------------ |
| reCAPTCHA v2 - IPチェック未設定 |
| reCAPTCHA v3 - IPチェック未設定 |
| reCAPTCHA v2 Enterprise  |
| reCAPTCHA v3 Enterprise  |
| Cloudflare Turnstile     |
| Geetest v3 / v4          |
| 画像からテキスト                 |

## Aikido に少し助けが必要な CAPTCHA

以下の CAPTCHA は、当社のエージェントでは自動的に解決できません。ペンテストを進めるには、以下の追加対応が必要です。

|                           |                                                                                                                                                                                |
| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| hCaptcha                  | hCaptcha はポータル内で許可リスト設定を提供していません。これらの CAPTCHA 除外はコードベースで実装する必要があります。                                                                                                           |
| reCAPTCHA v2 - IPチェック設定あり | 次を除外してください [Aikido の IP](/docs/docs-ja/pentesuto/prepare-a-pentest/ip-addresses-for-pentest.md) 以下を使用して [許可リスト設定手順](https://docs.cloud.google.com/recaptcha/docs/allowlist-ip) |
| reCAPTCHA v3 - IPチェック設定あり | 次を除外してください [Aikido の IP](/docs/docs-ja/pentesuto/prepare-a-pentest/ip-addresses-for-pentest.md) 以下を使用して [許可リスト設定手順](https://docs.cloud.google.com/recaptcha/docs/allowlist-ip) |

## reCAPTCHA の IPチェック対応に関する補足

reCAPTCHA が IP チェックなしで設定されている場合、検証はクライアントの IP アドレスに依存しません。代わりに Google は、ブラウザの挙動や実行コンテキストなどの非 IP シグナルを評価するため、別の IP から送信されたトークンでも検証できます。

IP チェックが有効な場合、reCAPTCHA はチャレンジ／トークンを発信元の IP アドレスに紐づけ、検証時にも同じ IP を要求します。当社のエージェントはチェックを解決しボット対策を回避するために複数の IP を使用するため、IP 制限下では検証に失敗することがあります。

このため、reCAPTCHA の IP チェックが有効な場合は、追加の IP 許可リスト設定が必要です。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.aikido.dev/docs/docs-ja/pentesuto/configure-a-pentest/setting-up-authenticated-testing/handling-captcha-challenges.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
