> ## Documentation Index
> Fetch the complete documentation index at: https://tbd-6fc993ce-mason-add-copy-page-to-context-menu.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Stealth Mode

Kernel browsers can be configured to `stealth` mode, which adds our recommended proxy configuration to your browser instances. It also adds a `reCAPTCHA solver` to the browser, so it automatically solves [reCAPTCHAs](https://www.google.com/recaptcha/api2/demo) on your behalf.

To turn on stealth mode, set its flag when instantiating Kernel browsers:

<CodeGroup>
  ```typescript Typescript/Javascript theme={null}
  const kernelBrowser = await kernel.browsers.create({
      invocation_id: ctx.invocation_id,
      stealth: true,
  });
  ```

  ```python Python theme={null}
  kernel_browser = client.browsers.create(invocation_id=ctx.invocation_id, stealth=True)
  ```
</CodeGroup>

<Info>
  [Anthropic Computer Use](/quickstart#sample-apps-reference) stops when it runs into a CAPTCHA. Use Kernel's auto-captcha solver by adding this to your prompt:

  `"If you see a CAPTCHA or similar test, just wait for it to get solved automatically by the browser."`
</Info>

If you're looking for proxy-level configuration with Kernel browsers, see [Proxies](/proxies/overview).
