Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.89 KB

plugin.md

File metadata and controls

53 lines (33 loc) · 1.89 KB

返回首页 English Version

ReCaptcha & hCaptcha

  • 首先安装扩展,扩展下载地址为:

    https://chrome.google.com/webstore/detail/nocaptcha-solver/kkphlbgphimpedeckcepigahenlmpggc?utm_source=ext_sidebar&hl=zh-CN

图1

  • 安装好扩展后,将NoCaptcha Solver扩展固定在扩展栏中(方便操作)后登录自己平台的账号。token为消费的令牌user name 为平台登录账号,即邮箱地址

    图

    图

  • 点击管理扩展程序或者浏览器输入chrome://extensions/进入扩展程序页面, 点击Service Worker

    图

  • 点击后会打开开发者工具,此时切换至network面板。

    图

  • 打开需要破解的网站,如https://democaptcha.com/demo-form-eng/recaptcha-2.html 扩展会自动开始破解reCaptcha或者hCaptcha

    图

    图

  • 此时,在network栏里,则可获取到验证码需要的所有参数。注意无需理会extra对象,也不要提交该参数

    图

{
    "sitekey": "6LfGqN0UAAAAAFdGo4OSj5Awi8hM_9kmR7VfXUP2",
    "referer": "https://democaptcha.com/demo-form-eng/recaptcha-2.html",
    "title": "reCAPTCHA 2 demo form | AntiCaptcha plugin demo forms",
    "size": "normal",
    "action": null,
    "s": null,
    "extra": {
        "origin": "chrome-plugin",
        "cb": null
    }
}

至此,破解所需要的参数就一次性全部获取到了,hCaptcha的操作也是和reCaptcha一摸一样的,在此就不再赘述了。