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
0
votes
0 answers

Why I have the error : Entered captcha is wrong, try again

I installed hCaptcha in phpMyAdmin using the following settings: $cfg['CaptchaMethod'] = 'checkbox'; $cfg['CaptchaApi'] = 'https://js.hcaptcha.com/1/api.js'; $cfg['CaptchaCsp'] = 'https://hcaptcha.com…
Seith
  • 1
  • 1
0
votes
0 answers

Vue3 hCaptcha with Capacitor

I have a vue3 application which includes a login interface, the login interface has a vue-hcaptcha component, but not in developer mode, and the capacitor application does not work because the captcha cannot be used in localhost, how can I make it…
bndrmrtn
  • 1
  • 3
0
votes
1 answer

hCaptcha with Nodejs and React not working (csp)

I have nodejs with helmet as backend and react with the "@hcaptcha/react-hcaptcha" library in the frontend nodejs: app.use(helmet()); app.use(helmet.contentSecurityPolicy({ directives: { …
Jake
  • 3
  • 2
0
votes
2 answers

Problem with Hcaptcha and iframe browser restriction

I'm working on a local javascript application that interact with a server in ajax and I want to securize my creation form with hcaptcha.

Create an account

0
votes
0 answers

Spamming a request makes the server lag

For the past days i have this recurring issues where a person makes my server spams requests to a captcha service. In short, every connection, a socket has an Captcha token to verify if they're a legitimate and not a robot. let captchaResponse =…
0
votes
0 answers

401 Unauthorised when attempting to login to site C#

Attempting to login to habbo.com using anticaptcha to solve HCaptcha but getting a 401 Unauthorised Unsure if HCaptcha has another URL I need to hit with some data or if I'm missing a header / cookie in the request to habbo.com, any help will be…
Hasan
  • 21
  • 1
  • 4
0
votes
1 answer

H Captcha on a web page without submit button or callback

I use Python and the selenium libary. My problem is that on the internet page top.gg when you vote there is a H captcha that opens automaitically. The problem is I can't find a callback function. I use 2captcha to get the token. Does anyone have a…
0
votes
1 answer

Getting span task name captcha with querySelector, only gets if body is fully open

elements not expanded imagem I don't know why the elements are not expanded, when I execute the command it gives this error Uncaught TypeError: Cannot read properties of null (reading 'querySelectorAll') *Now when I open the elements up to the…
0
votes
0 answers

How can i implement a HCaptcha in Blazor-Server?

I have been trying to implement a hCaptcha to my blazor-server project for the last couple days, but everything i tried failed in one way or another. My most promising attempt was to just add the HTML-code from the hcaptcha website to the app. I…
0
votes
1 answer

What is the difference between hCaptcha and reCAPTCHA?

I work with python selenium, and I wanted to know what is the difference between hCaptcha and reCAPTCHA? So what I discovered is that all sites that work with Cloudflare support hCaptcha and not reCAPTCHA and I wanted to know if it is possible to…
Rexsaa Gater
  • 13
  • 1
  • 4
0
votes
1 answer

Handling hCaptcha in golang

While integrating hCaptcha into my golang (go-fiber) project I followed this process: hCaptcha Demo
Eziz Durdyyev
  • 1,110
  • 2
  • 16
  • 34
0
votes
0 answers

How to bypass hCaptha with accessibility

Hi I have a rails application built for web scraping our results from the site by entering register ID. But they have updated the site by including hCaptcha so I would like to know how to bypass and fetch the results from the site by looping roll…
SHAIK
  • 1
0
votes
1 answer

trying to use hCaptcha with Laravel | Sail | Docker environment

I am developing locally - laravel sail / docker environment - and access my site with http://localhost. Trying to test hCaptcha. Cannot do so locally. It has been suggested to change my /etc/hosts file: # cat hosts 127.0.0.1 localhost ::1…
0
votes
1 answer

The discord register system with Python gives an error "Invalid-response"

I am trying to create a discord register system via Python. But hCaptcha gives the "Invalid-response" error. Is Discord the real cause of this problem or is there a different factor? from anticaptchaofficial.hcaptchaproxyless import * import…
yardimc
  • 11
0
votes
1 answer

H-Captcha, can't fill the token in h-captcha-response innerHTML and g-recaptcha-response innerHTML

I'm trying to bypass a Hcaptcha with 2captcha thank to selenium and 2captcha in python. When I receive my 2captcha token, I try to fill my token in both textareas named 'h-captcha-response' and 'g-captcha-response' But it doesn't work. Both…