Questions tagged [hcaptcha]

Use this tag for questions about hCaptcha, a captcha to keep out bots and a drop-in replacement for reCAPTCHA.

61 questions
6
votes
2 answers

hCaptcha scrolls to top on invokation

I've added hCaptcha to my website in invisible mode, and I invoke the challenge when the submit button on my form is pressed by doing await captcha.execute({ async: true }).catch(() => { // ... } submitForm(); However, for some reason this causes…
J P
  • 541
  • 1
  • 10
  • 20
6
votes
2 answers

Use and test hCaptcha on localhost

How can I test hCaptcha on localhost? When using the key, I get a CORS error, and for choosing sites for the key, it specifically states ... localhost will not work
Kevin Danikowski
  • 4,620
  • 6
  • 41
  • 75
3
votes
0 answers

Does hcaptcha have a data callback to submit solution?

I'm using the anti-captcha API to bypass hcaptcha on a few websites. I'm getting the solution (response token) from anti-captcha, then I place it on the hcaptcha textarea. There is no submit button on this hcaptcha, so I need to find a data callback…
3
votes
3 answers

Is there a workaround to get past CoinGecko API security check?

I was running my code at work, and it just went smoothly, but on a different network (Home WiFi), I keep receiving 403 error when accessing CoinGecko V3 API. It can be observed that accessing the API on a private browser (to test it) will prompt a…
Rod Maniego
  • 139
  • 3
  • 10
2
votes
2 answers

Is there any way to bypass Hcaptcha by using selenium python

Is there any way to bypass Hcaptcha by using selenium python, I tried 2captcha(https://2captcha.com/) API, but it doesn't work
farhan Alam
  • 39
  • 1
  • 5
2
votes
1 answer

Bypassing a hCaptcha with callback?

Hello so i am trying to bypass hCaptcha in a website called "stake.games" with using 2captcha bypass but it seems to not work. I am getting the bypass code but when i type it in both "grecaptcha-response" & "hcaptcha-response" and click the check…
ccz
  • 41
  • 3
1
vote
0 answers

How to bypass the hcaptcha in selenium python code for free?

I`m looking for free stable solution of bypassing captchas (hcaptcha specifically). I am aware of some 2captcha.com-like services and everything, but this does not satisfy me. I am thinking about some solutions using the machine learning or bugs.…
1
vote
0 answers

selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element Even tho its there

I've been trying to access this element I have tried XPATH, CSSSELECTOR and none worked. I'm trying to acces sitekey= and pass it into a variable. I'm expecting the function to return the sitekey to a variable. Heres is my…
1
vote
2 answers

No callback in htcaptcha implementation

I am trying to automate the login on the website called stake.us. They had implemented a hcaptcha to stop bots from logging into the website. I am using 2captcha service to get the solution for the captcha. Now the verification code that is supplied…
Tarster
  • 105
  • 1
  • 1
  • 9
1
vote
1 answer

Apify with Python : Account authorization key not found in the system

I was trying the free trial version of recaptcha solver by apify for the following page https://www.google.com/recaptcha/api2/demo Input : { "key": "apify_api_KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK", "webUrl":…
Himanshu Poddar
  • 7,112
  • 10
  • 47
  • 93
1
vote
0 answers

import "hcaptcha_field" could not be resolved Django

I'm trying to add hCaptcha to my project but I can't get it to work, I've tried several versions of this library but I can't get it to work. Every time i tried importing 'hcaptcha_field' or 'hcaptcha_fields' it gives me the error import…
Json
  • 11
  • 5
1
vote
0 answers

Captcha resolution

Hi I am working on a project where i have to scrape a website that has a h-captcha, I used 2captcha to resolve the h-captcha and it works, however when I submit the form it redirect me to link in the form action. I tried with the demo h-captcha and…
1
vote
0 answers

How can I bypass Cloudflare's hCaptcha with Selenium?

I'm working on a bot that scrapes data from sites but the cloudflare hcaptcha is getting in the way. Here is my current code: from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import…
1
vote
1 answer

hCaptcha throws 403 forbidden Error when first loading (response: "invalid data")

When the hCaptcha ist first loaded onto the Website it throws error 403 (Forbidden). It looks fine, but when the captcha is pressed, the loading (orange circle) goes on indefinitely. GET …
Sirin
  • 13
  • 6
1
vote
2 answers

HTML make h-captcha form required in post form

Hello I am currently trying to implement h-captcha into a html form in my website However I noticed that by default its not "required" like for example text boxes can made to be I havent found any good solutions out there who can help me out with…
1
2 3 4 5