> 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/penetorshontesuto/configure-a-pentest/setting-up-authenticated-testing/handling-captcha-challenges.md).

# キャプチャ課題への対応

多くのアプリケーションでは、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/penetorshontesuto/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/penetorshontesuto/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/penetorshontesuto/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.
