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
2 answers

How do I use separate recaptcha keys for development and production

It says in the docs they recommend to use separate keys for development and production I have my site keys stored in .env
1
vote
1 answer

Finding Invisible Recaptcha Callback Function

I have a Captcha service for Captcha Bypass. The problem is the script works fine on most other sites, but this site does not have a callback function although it does have a callback. So how would I execute the Callback? Here is my…
hdsouza
  • 354
  • 4
  • 17
1
vote
2 answers

How does 2captcha and apify like captcha solving services replicate my captcha using data-sitekey internally?

As I understand from various blogs that sites like 2captcha is a human-powered image and CAPTCHA recognition service. It's main purpose is solving your CAPTCHAs in a quick and accurate way by human employees who are always online to receive my…
Himanshu Poddar
  • 7,112
  • 10
  • 47
  • 93
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

How can I get the element by selenium?

How can i get the recaptcha data-sitekey by selenium on this websie? https://premier.hkticketing.com/ I have try this code: data_sitekey = WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.CLASS_NAME,…
Leung
  • 23
  • 2
1
vote
1 answer

Cloud Armor Waf - How to forward rate based ban to recaptcha?

I successfully got rate-based-limit working in Cloud Armor. reCaptcha works for me too. But I'm looking for a solution if cloud armor rate based can redirect users to recaptcha after exceeding some number of requests? rate-based-limit gcloud beta…
1
vote
0 answers

Form submission and recaptcha not working on submit

I am trying to implement a reCAPTCHA on my html form, and I followed the steps outlined in Google documentation but the button isn't working now when you click 'Submit". The reCAPTCHA doesn't show either. The form itself is handled by PHP, not sure…
David Feudale
  • 167
  • 1
  • 11
1
vote
3 answers

If user is signed into a google account can user still face the "I'm not a robot" message?

If you are signed into a google account, will you still get the "I'm not a robot message", or is there no other way to avoid it besides paid services. I am using the Selenium library in python.
1
vote
0 answers

reCAPTCHA validation failed, suspected as abusive usage

a customer of ours has been experiencing problems with ReCaptcha v3 for a few days now. When they want to send a message themselves via a contact form, they get the following error message: Invalid Form - ReCaptcha validation failed, suspected as…
1
vote
0 answers

Google reCaptcha attribute 'data-callback' causing page refresh on alert

I have added Google reCaptcha v3 script to my form. The form also includes validation that alerts the user to complete the input field. Now when the user clicks on submit button directly, an alert is shown and when OK is clicked the page refreshes…
1
vote
1 answer

What's the http status code if a site key exceeds 1000 QPS for recaptcha?

in recaptcha document, it says that if a site key exceeds 1000 QPS, then some requests may not be processed, I am wondering how I can identify this error if this happens? I assume a http code of 429 is thrown by google server?
1
vote
1 answer

Get actions on recaptcha enterprise

I'm trying to build a dashboard based on data from recaptcha enterprise. I only got the score metrics data, but not the actions data. Is it possible to get the actions that can be found on recaptcha dashboard on GCP? By using this code, I can get…
1
vote
2 answers

reCaptcha not working on Safari with "prevent cross site tracking" setting enabled

We have a problem in safari that does not load recaptcha. We found out that it's related to prevent cross site tracking setting on safari website tracking setting (image below): Now we are looking for a solution to resolve this problem without…
1
vote
0 answers

*Absolute beginner* How can I make the reCaptcha work?

Basically when I try this I don't need to click on the captcha to send the message. I just don't understand what in the code allows to bypass the captcha. Also I'd like to include an error for the user when the captcha is not checked. Sorry if this…
TomTom
  • 11
  • 2
1
vote
1 answer

Google V3 Captcha only returns size and timeout

I am attempting to implement google's v3 recaptcha. Here is my front end ... const submitItem = (values) => { window.grecaptcha.ready(() => { window.grecaptcha .execute(SITE_KEY, { action: "submit" }) .then((token) => { …
Joshua Foxworth
  • 1,236
  • 1
  • 22
  • 50