Skip to content

Commit

Permalink
add: captcha demo 2023.11.08
Browse files Browse the repository at this point in the history
  • Loading branch information
TRHX committed Nov 8, 2023
1 parent 945a630 commit 37360cc
Show file tree
Hide file tree
Showing 27 changed files with 717 additions and 101 deletions.
27 changes: 18 additions & 9 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,16 +225,25 @@ module.exports = {
{ text: '友验 FastYotest', link: '/captcha-demo/fastyotest/' },
]},
{ text: '国外验证码', items: [
{ text: 'Cloudflare Turnstile', link: '/captcha-demo/cloudflare-managed/', items: [
{ text: 'Cloudflare Managed Challenge', link: '/captcha-demo/cloudflare-managed/' },
{ text: 'Cloudflare Non-Interactive Challenge', link: '/captcha-demo/cloudflare-non-interactive/' },
{ text: 'Cloudflare Invisible Challenge', link: '/captcha-demo/cloudflare-invisible/' },
{ text: 'Cloudflare Turnstile', link: '/captcha-demo/turnstile-managed/', items: [
{ text: 'Turnstile Managed Challenge', link: '/captcha-demo/turnstile-managed/' },
{ text: 'Turnstile Non-Interactive Challenge', link: '/captcha-demo/turnstile-non-interactive/' },
{ text: 'Turnstile Invisible Challenge', link: '/captcha-demo/turnstile-invisible/' },
]},
{ text: 'Google reCAPTCHA', link: '/captcha-demo/recaptcha-v2-easy/', items: [
{ text: 'reCAPTCHA v2 (Easy Difficulty)', link: '/captcha-demo/recaptcha-v2-easy/' },
{ text: 'reCAPTCHA v2 (Moderate Difficulty)', link: '/captcha-demo/recaptcha-v2-moderate/' },
{ text: 'reCAPTCHA v2 (Hard Difficulty)', link: '/captcha-demo/recaptcha-v2-hard/' },
{ text: 'reCAPTCHA v3 (Invisible)', link: '/captcha-demo/recaptcha-v3-invisible/' },
{ text: 'Google reCAPTCHA', link: '/captcha-demo/recaptcha-v2-checkbox/', items: [
{ text: 'reCAPTCHA V2 Checkbox', link: '/captcha-demo/recaptcha-v2-checkbox/' },
{ text: 'reCAPTCHA v2 Invisible', link: '/captcha-demo/recaptcha-v2-invisible/' },
{ text: 'reCAPTCHA v2 Enterprise', link: '/captcha-demo/recaptcha-v2-enterprise/' },
{ text: 'reCAPTCHA v3', link: '/captcha-demo/recaptcha-v3/' },
{ text: 'reCAPTCHA v3 Enterprise', link: '/captcha-demo/recaptcha-v3-enterprise/' },
]},
{ text: 'hCaptcha', link: '/captcha-demo/hcaptcha-easy/', items: [
{ text: 'hCaptcha Easy', link: '/captcha-demo/hcaptcha-easy/' },
{ text: 'hCaptcha Medium', link: '/captcha-demo/hcaptcha-medium/' },
{ text: 'hCaptcha Difficult', link: '/captcha-demo/hcaptcha-difficult/' },
{ text: 'hCaptcha Invisible', link: '/captcha-demo/hcaptcha-invisible/' },
{ text: 'hCaptcha Pro', link: '/captcha-demo/hcaptcha-pro/' },
{ text: 'hCaptcha Enterprise', link: '/captcha-demo/hcaptcha-enterprise/' },
]},
{ text: 'Arkose FunCAPTCHA', link: '/captcha-demo/funcaptcha/' },
{ text: 'DataDome CAPTCHA', link: '/captcha-demo/datadome/' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ article: false
- 知乎登录:[https://www.zhihu.com/signin](https://www.zhihu.com/signin)
- 网易严选登录:[https://you.163.com/](https://you.163.com/)
- 中影华夏聚合登录:[https://www.zyhxjh.com/#/login](https://www.zyhxjh.com/#/login)

::: right
访问 [易盾官网](https://dun.163.com/product/captcha)
:::
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: Turnstile Managed Challenge
date: 2023-10-20 12:40:57
permalink: /captcha-demo/turnstile-managed
article: false
---

::: theorem Cloudflare Turnstile
[Cloudflare Inc.](https://www.cloudflare.com/our-story/)旗下产品 Cloudflare Turnstile 是一款替代 CAPTCHA 的免费工具,Turnstile 仅需一个简单的免费代码片段,即可向网站访问者提供零挫败感、无 CAPTCHA 的 Web 体验。此外,Turnstile 可以阻止滥用并确认访问者的真实性,但不会有任何 CAPTCHA 给用户造成的数据隐私担忧或糟糕体验。

<br>

Turnstile 有[三种模式](https://developers.cloudflare.com/turnstile/reference/widget-types/)

- **Managed Challenge**:托管模式,自动判断是否需要用户交互,即自动判断是否需要点一下;
- **Non-Interactive Challenge**:非交互式模式,永远不会要求用户交互;
- **Invisible Challenge**:无感模式,不会显示任何信息。

Demo 样例(随时有可能变化,以实际情况为准):
<br>

- nowsecure.nl:[https://nowsecure.nl/](https://nowsecure.nl/)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- cfschl.peet.ws:[https://cfschl.peet.ws/](https://cfschl.peet.ws/)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- nopecha.com:[https://nopecha.com/demo/cloudflare](https://nopecha.com/demo/cloudflare)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- gleam.io:[https://gleam.io/0Kbee/rolex-oyster-perpetual](https://gleam.io/0Kbee/rolex-oyster-perpetual)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/managed.html](https://peet.ws/turnstile-test/managed.html)<Badge text="Managed Challenge" type="tip" vertical="middle"/> <Badge text="本页使用" type="error" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/non-interactive.html](https://peet.ws/turnstile-test/non-interactive.html)<Badge text="Non-Interactive Challenge" type="tip" vertical="middle"/>
- emload.com:[https://www.emload.com/v2](https://www.emload.com/v2)<Badge text="Non-Interactive Challenge" type="tip" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/invisible.html](https://peet.ws/turnstile-test/invisible.html)<Badge text="Invisible Challenge" type="tip" vertical="middle"/>

::: right
访问 [Cloudflare 官网](https://www.cloudflare.com/zh-cn/products/turnstile/)
:::

<iframe src="https://peet.ws/turnstile-test/managed.html" height="350px"></iframe>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: Turnstile Non-Interactive Challenge
date: 2023-10-20 12:40:57
permalink: /captcha-demo/turnstile-non-interactive
article: false
---

::: theorem Cloudflare Turnstile
[Cloudflare Inc.](https://www.cloudflare.com/our-story/)旗下产品 Cloudflare Turnstile 是一款替代 CAPTCHA 的免费工具,Turnstile 仅需一个简单的免费代码片段,即可向网站访问者提供零挫败感、无 CAPTCHA 的 Web 体验。此外,Turnstile 可以阻止滥用并确认访问者的真实性,但不会有任何 CAPTCHA 给用户造成的数据隐私担忧或糟糕体验。

<br>

Turnstile 有[三种模式](https://developers.cloudflare.com/turnstile/reference/widget-types/)

- **Managed Challenge**:托管模式,自动判断是否需要用户交互,即自动判断是否需要点一下;
- **Non-Interactive Challenge**:非交互式模式,永远不会要求用户交互;
- **Invisible Challenge**:无感模式,不会显示任何信息。

Demo 样例(随时有可能变化,以实际情况为准):
<br>

- nowsecure.nl:[https://nowsecure.nl/](https://nowsecure.nl/)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- cfschl.peet.ws:[https://cfschl.peet.ws/](https://cfschl.peet.ws/)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- nopecha.com:[https://nopecha.com/demo/cloudflare](https://nopecha.com/demo/cloudflare)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- gleam.io:[https://gleam.io/0Kbee/rolex-oyster-perpetual](https://gleam.io/0Kbee/rolex-oyster-perpetual)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/managed.html](https://peet.ws/turnstile-test/managed.html)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/non-interactive.html](https://peet.ws/turnstile-test/non-interactive.html)<Badge text="Non-Interactive Challenge" type="tip" vertical="middle"/> <Badge text="本页使用" type="error" vertical="middle"/>
- emload.com:[https://www.emload.com/v2](https://www.emload.com/v2)<Badge text="Non-Interactive Challenge" type="tip" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/invisible.html](https://peet.ws/turnstile-test/invisible.html)<Badge text="Invisible Challenge" type="tip" vertical="middle"/>

::: right
访问 [Cloudflare 官网](https://www.cloudflare.com/zh-cn/products/turnstile/)
:::

<iframe src="https://peet.ws/turnstile-test/non-interactive.html" height="350px"></iframe>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: Turnstile Invisible Challenge
date: 2023-10-20 12:40:57
permalink: /captcha-demo/turnstile-invisible
article: false
---

::: theorem Cloudflare Turnstile
[Cloudflare Inc.](https://www.cloudflare.com/our-story/)旗下产品 Cloudflare Turnstile 是一款替代 CAPTCHA 的免费工具,Turnstile 仅需一个简单的免费代码片段,即可向网站访问者提供零挫败感、无 CAPTCHA 的 Web 体验。此外,Turnstile 可以阻止滥用并确认访问者的真实性,但不会有任何 CAPTCHA 给用户造成的数据隐私担忧或糟糕体验。

<br>

Turnstile 有[三种模式](https://developers.cloudflare.com/turnstile/reference/widget-types/)

- **Managed Challenge**:托管模式,自动判断是否需要用户交互,即自动判断是否需要点一下;
- **Non-Interactive Challenge**:非交互式模式,永远不会要求用户交互;
- **Invisible Challenge**:无感模式,不会显示任何信息。

Demo 样例(随时有可能变化,以实际情况为准):
<br>

- nowsecure.nl:[https://nowsecure.nl/](https://nowsecure.nl/)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- cfschl.peet.ws:[https://cfschl.peet.ws/](https://cfschl.peet.ws/)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- nopecha.com:[https://nopecha.com/demo/cloudflare](https://nopecha.com/demo/cloudflare)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- gleam.io:[https://gleam.io/0Kbee/rolex-oyster-perpetual](https://gleam.io/0Kbee/rolex-oyster-perpetual)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/managed.html](https://peet.ws/turnstile-test/managed.html)<Badge text="Managed Challenge" type="tip" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/non-interactive.html](https://peet.ws/turnstile-test/non-interactive.html)<Badge text="Non-Interactive Challenge" type="tip" vertical="middle"/>
- emload.com:[https://www.emload.com/v2](https://www.emload.com/v2)<Badge text="Non-Interactive Challenge" type="tip" vertical="middle"/>
- peet.ws:[https://peet.ws/turnstile-test/invisible.html](https://peet.ws/turnstile-test/invisible.html)<Badge text="Invisible Challenge" type="tip" vertical="middle"/> <Badge text="本页使用" type="error" vertical="middle"/>

::: right
访问 [Cloudflare 官网](https://www.cloudflare.com/zh-cn/products/turnstile/)
:::

<iframe src="https://peet.ws/turnstile-test/invisible.html" height="350px"></iframe>
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: reCAPTCHA V2 Checkbox
date: 2023-10-20 12:40:57
permalink: /captcha-demo/recaptcha-v2-checkbox
article: false
---

::: theorem Google reCAPTCHA
[Google Inc.](https://about.google/)旗下产品 reCAPTCHA 使用先进的风险分析引擎和自适应挑战来防止恶意软件在您的网站上进行滥用活动。同时,合法用户将能够登录、购买、查看页面或创建帐户,而虚假用户将被阻止。

<br>

reCAPTCHA 有[三种版本](https://developers.google.com/recaptcha/intro)、多种模式:

- **[reCAPTCHA v1](https://developers.google.com/recaptcha/docs/versions#recaptcha_v1_-_shut_down)**:V1 版本,早期为英文数字验证码,自 2018 年 3 月起已弃用;
- **[reCAPTCHA V2 Checkbox](https://developers.google.com/recaptcha/docs/display)**:V2 版本,需要用户点击后,系统自动判断是否通过或者需要图片验证;
- **[reCAPTCHA V2 Invisible](https://developers.google.com/recaptcha/docs/invisible)**:V2 版本,无感验证,不会显示任何信息;
- **[reCAPTCHA V2 Enterprise](https://cloud.google.com/recaptcha-enterprise/docs/overview)**:V2 企业版;
- **[reCAPTCHA v3](https://developers.google.com/recaptcha/docs/v3)**:V3 版本,无感模式,不会显示任何信息;
- **[reCAPTCHA V3 Enterprise](https://cloud.google.com/recaptcha-enterprise/docs/overview)**:V3 企业版;


Demo 样例(随时有可能变化,以实际情况为准):
<br>

- 官方 demo:[https://www.google.com/recaptcha/api2/demo](https://www.google.com/recaptcha/api2/demo)<Badge text="V2 Checkbox" type="tip" vertical="middle"/>
- 2captcha.com:[https://2captcha.com/demo/recaptcha-v2](https://2captcha.com/demo/recaptcha-v2)<Badge text="V2 Checkbox" type="tip" vertical="middle"/>
- appspot.com:[https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox.php](https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox.php)<Badge text="V2 Checkbox" type="tip" vertical="middle"/> <Badge text="本页使用" type="error" vertical="middle"/>
- democaptcha.com:[https://democaptcha.com/demo-form-eng/recaptcha-2.html](https://democaptcha.com/demo-form-eng/recaptcha-2.html)<Badge text="V2 Checkbox" type="tip" vertical="middle"/>

- 2captcha.com:[https://2captcha.com/demo/recaptcha-v2-invisible](https://2captcha.com/demo/recaptcha-v2-invisible)<Badge text="V2 Invisible" type="tip" vertical="middle"/>
- appspot.com:[https://recaptcha-demo.appspot.com/recaptcha-v2-invisible.php](https://recaptcha-demo.appspot.com/recaptcha-v2-invisible.php)<Badge text="V2 Invisible" type="tip" vertical="middle"/>

- 2captcha.com:[https://2captcha.com/demo/recaptcha-v2-enterprise](https://2captcha.com/demo/recaptcha-v2-enterprise)<Badge text="V2 Enterprise" type="tip" vertical="middle"/>

- 2captcha.com:[https://2captcha.com/demo/recaptcha-v3](https://2captcha.com/demo/recaptcha-v3)<Badge text="V3" type="tip" vertical="middle"/>
- appspot.com:[https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php](https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php)<Badge text="V3" type="tip" vertical="middle"/>
- antcpt.com:[https://antcpt.com/score_detector/](https://antcpt.com/score_detector/)<Badge text="V3" type="tip" vertical="middle"/>
- xushanxiang.com:[https://xushanxiang.com/demo/recaptcha/a.html](https://xushanxiang.com/demo/recaptcha/a.html)<Badge text="V3" type="tip" vertical="middle"/>
- 42web.io:[http://recaptcha-example.42web.io/](http://recaptcha-example.42web.io/)<Badge text="V3" type="tip" vertical="middle"/>

- 2captcha.com:[https://2captcha.com/demo/recaptcha-v3-enterprise](https://2captcha.com/demo/recaptcha-v3-enterprise)<Badge text="V3 Enterprise" type="tip" vertical="middle"/>

::: right
访问 [reCAPTCHA 官网](https://www.google.com/recaptcha/about/)
:::

<iframe src="https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox.php" height="700px"></iframe>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: reCAPTCHA V2 Invisible
date: 2023-10-20 12:40:57
permalink: /captcha-demo/recaptcha-v2-invisible
article: false
---

::: theorem Google reCAPTCHA
[Google Inc.](https://about.google/)旗下产品 reCAPTCHA 使用先进的风险分析引擎和自适应挑战来防止恶意软件在您的网站上进行滥用活动。同时,合法用户将能够登录、购买、查看页面或创建帐户,而虚假用户将被阻止。

<br>

reCAPTCHA 有[三种版本](https://developers.google.com/recaptcha/intro)、多种模式:

- **[reCAPTCHA v1](https://developers.google.com/recaptcha/docs/versions#recaptcha_v1_-_shut_down)**:V1 版本,早期为英文数字验证码,自 2018 年 3 月起已弃用;
- **[reCAPTCHA V2 Checkbox](https://developers.google.com/recaptcha/docs/display)**:V2 版本,需要用户点击后,系统自动判断是否通过或者需要图片验证;
- **[reCAPTCHA V2 Invisible](https://developers.google.com/recaptcha/docs/invisible)**:V2 版本,无感验证,不会显示任何信息;
- **[reCAPTCHA V2 Enterprise](https://cloud.google.com/recaptcha-enterprise/docs/overview)**:V2 企业版;
- **[reCAPTCHA v3](https://developers.google.com/recaptcha/docs/v3)**:V3 版本,无感模式,不会显示任何信息;
- **[reCAPTCHA V3 Enterprise](https://cloud.google.com/recaptcha-enterprise/docs/overview)**:V3 企业版;


Demo 样例(随时有可能变化,以实际情况为准):
<br>

- 官方 demo:[https://www.google.com/recaptcha/api2/demo](https://www.google.com/recaptcha/api2/demo)<Badge text="V2 Checkbox" type="tip" vertical="middle"/>
- 2captcha.com:[https://2captcha.com/demo/recaptcha-v2](https://2captcha.com/demo/recaptcha-v2)<Badge text="V2 Checkbox" type="tip" vertical="middle"/>
- appspot.com:[https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox.php](https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox.php)<Badge text="V2 Checkbox" type="tip" vertical="middle"/>
- democaptcha.com:[https://democaptcha.com/demo-form-eng/recaptcha-2.html](https://democaptcha.com/demo-form-eng/recaptcha-2.html)<Badge text="V2 Checkbox" type="tip" vertical="middle"/>

- 2captcha.com:[https://2captcha.com/demo/recaptcha-v2-invisible](https://2captcha.com/demo/recaptcha-v2-invisible)<Badge text="V2 Invisible" type="tip" vertical="middle"/>
- appspot.com:[https://recaptcha-demo.appspot.com/recaptcha-v2-invisible.php](https://recaptcha-demo.appspot.com/recaptcha-v2-invisible.php)<Badge text="V2 Invisible" type="tip" vertical="middle"/> <Badge text="本页使用" type="error" vertical="middle"/>

- 2captcha.com:[https://2captcha.com/demo/recaptcha-v2-enterprise](https://2captcha.com/demo/recaptcha-v2-enterprise)<Badge text="V2 Enterprise" type="tip" vertical="middle"/>

- 2captcha.com:[https://2captcha.com/demo/recaptcha-v3](https://2captcha.com/demo/recaptcha-v3)<Badge text="V3" type="tip" vertical="middle"/>
- appspot.com:[https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php](https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php)<Badge text="V3" type="tip" vertical="middle"/>
- antcpt.com:[https://antcpt.com/score_detector/](https://antcpt.com/score_detector/)<Badge text="V3" type="tip" vertical="middle"/>
- xushanxiang.com:[https://xushanxiang.com/demo/recaptcha/a.html](https://xushanxiang.com/demo/recaptcha/a.html)<Badge text="V3" type="tip" vertical="middle"/>
- 42web.io:[http://recaptcha-example.42web.io/](http://recaptcha-example.42web.io/)<Badge text="V3" type="tip" vertical="middle"/>

- 2captcha.com:[https://2captcha.com/demo/recaptcha-v3-enterprise](https://2captcha.com/demo/recaptcha-v3-enterprise)<Badge text="V3 Enterprise" type="tip" vertical="middle"/>

::: right
访问 [reCAPTCHA 官网](https://www.google.com/recaptcha/about/)
:::

<iframe src="https://recaptcha-demo.appspot.com/recaptcha-v2-invisible.php" height="500px"></iframe>

This file was deleted.

Loading

0 comments on commit 37360cc

Please sign in to comment.