-
Notifications
You must be signed in to change notification settings - Fork 141
Where to test the reCaptcha ? #202
Comments
I'll turn the CAPTCHA on for https://pro-src.com. Give me one sec to do it. Edit: Done. All |
Thanks a lot :) |
You're welcome. Issue solved? |
Yep. |
Theres a chance that if using cloudscraper though Tor that you'll get a CAPTCHA consistently. I haven't confirmed it yet. The reason I suspect this is because this article mentions that the Tor team had to make a small change at the request of CF to avoid the CAPTCHAs and it only works for newer versions of the Tor Browser. If that change was only made in the Tor Browser, maybe we'll have some luck there. Article: https://www.zdnet.com/article/cloudflare-ends-captcha-challenges-for-tor-users/ |
You must override the headers entirely. Probably don't even have to use Tor. torsocks node -e 'var cf = require("cloudscraper"); cf.debug = true; cf.defaultParams.headers = {}; cf.get("http://gktorrent.net/torrents/series").then(console.log);' const cloudscraper = require('cloudscraper').defaults({ headers: {} }) |
Cool. Thanks for headers "trick". |
I better option that seems to be Cloudflare approved is https://captcha.website |
I want to test my captcha solving method but can't find any page with captcha triggered. Maybe there is some test pages or something ? Because I don't want to configure cf by myself. And I need "alive" page (not the one in fixtures folder) for domain/host mocking on local machine.
The text was updated successfully, but these errors were encountered: