Questions tagged [recaptcha]

For questions about the reCAPTCHA service: Designed to protect against spam and abuse by blocking bots while allowing valid users access.

reCAPTCHA is a system originally developed at Carnegie Mellon University that uses CAPTCHA to help digitize the text of books while protecting websites from bots attempting to access restricted areas.

reCAPTCHA requires a user to select images which do or don't include certain items in them. The technology works due the ability of a human being to distinguish subtle visual hints that AI would not yet recognize.

On September 16, 2009, Google acquired reCAPTCHA.

Links

Related

4381 questions
1
vote
1 answer

Verify if reCaptcha v3 in Nuxt is working properly

I'm installing @nuxtjs/recaptcha on my nuxt project, which is google reCaptcha V3. It looks like it's working great it's always returning success result from the servers like below. {success: true, challenge_ts: '2022-05-05T11:37:06Z', hostname:…
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
0 answers

How are I disable the RECAPTCHA on Flask appbuilder?

Due to school asignment, I have to write a wedsite with flask appbuilder, when I try to add a register page, I don't need the RECAPTCHA. So, how can I disable this? I tried: add RECAPTCHA_ENABLED = False in config.py --- [not working, the…
1
vote
0 answers

How effective is invisible reCAPTCHA on react-native?

We have a use case where we need to protect a login/sign up endpoint from bad actor. This endpoint is expensive for us, because we need to send a One Time Password (OTP) to the submitted number. A few prevention already in place, such as: IP rate…
Wilianto Indrawan
  • 2,394
  • 3
  • 21
  • 26
1
vote
0 answers

detecting quota limits reCAPTCHA android

I'm wondering if there any callbacks reCAPTCHA for android (https://developer.android.com/training/safetynet/recaptcha) when limit for requests exceeds quota? Also, how exactly is the limit calculated? Does it count every call to…
Ivan Syabro
  • 136
  • 1
  • 6
1
vote
1 answer

Can I put recaptcha on wordpress homepage?

Is there any way to put Google recaptcha on the homepage of a wordpress website, so guests can't browse the site unless they pass the recaptcha test? So far, I was able to put recaptcha only in pages where user needs to enter data. Thank you!
1
vote
0 answers

invisible recaptcha api js blocked me

I've try to use v2 invisible Recaptcha and CSC blocking reCaptcha as you see in my picture and i tried add https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha Content-Security-Policy to my web config but it is still not working.…
1
vote
0 answers

Captcha reappears using 2captcha token in Selenium

So I am trying to bypass the captcha in this page https://divulgacione14.registraduria.gov.co/ using 2captcha, Selenium and python. An image captcha appears after the "Consulta" button has been clicked a couple of times. Everything is working fine…
1
vote
0 answers

How to make button visible when user solves recaptcha

I want to design a form but having a trouble about checkbox. After user cliks checkbox, recaptcha will come. When user solves captcha then button will be visible and clickable. Here is my code. How can i make it? Here is an similar problem of my…
utkuyceng
  • 43
  • 6
1
vote
0 answers

Selecting button within closed Shadow DOM, with Selenium

I am trying to solve a google captcha with Selenium, using python I'm using this simple example site to test with, but I am having difficulties understanding how to select a button that is within a shadow root. This image shows the button element I…
Jeppe
  • 1,424
  • 2
  • 15
  • 36
1
vote
0 answers

Getting invalid domain and request from iOS client application are blocked while integrating google RECAPTCHA Enterprise

I am trying to integrate google recaptcha enterprise, I have successfully generated the site key api key from the console, I am getting following two issue While loading the "I'm not a robot" checkbox UI in web view , I am getting "invalid domain…
1
vote
1 answer

Google recaptcha v3 with codeigniter 3 - incorrect-captcha-sol

I am trying to add recaptchav3 to my site which is built on codeigniter 3 with php8 but i get incorrect-captcha-sol error when I submit the answer. Can any one help me to correct the following ? // site keys defined in…
Snehal
  • 137
  • 1
  • 4
  • 16
1
vote
0 answers

support different languages for Google reCAPTCHA

I am using reCaptcha API on android through SafetyNet API as given on Android Developer site. My application is multilingual application. When I all together change phones language setting, my reCaptcha appears in that language. But I want to change…
1
vote
0 answers

Server side validation fails for Google Recaptcha V2

We are getting 504 Gateway Time-out in the Google Recaptcha after submitting the form in our Web Portal. So far when we curl in the App Server: curl -X POST -H "Content-Type: application/json" \ -d '{"secret": "abc123", "response": "def456"}' \ …
Compaq LE2202x
  • 2,030
  • 9
  • 45
  • 62
1
vote
0 answers

conditionalPanel and recaptchaUI not working together in R Shiny

For my shinyapp, I am currently trying to implement a conditionalPanel in the sidebar. It is working fine, if I don't use recaptcha button at the end for submission. But with recaptcha button, the conditional Panel does not work. I am using the…
noddy157
  • 31
  • 4