Questions tagged [invisible-recaptcha]

Use this tag to refer about the Google reCAPTCHA tool to differentiate humans and bots without requesting to solve a CAPTCHA.

281 questions
5
votes
0 answers

Finding Invisible Recaptcha Callback Function of an external site

How can I manually find the callback function of invisible recaptcha? The following is the website:- https://www.redbubble.com/auth/login The following gives a string and not a function ___grecaptcha_cfg.clients[0].aa.l.callback Plus, there doesn't…
5
votes
1 answer

How to Move Invisible Recaptcha Badge to Another Place on Page

I have the new invisible recaptcha working fine, but it puts the badge in bottom left or right corner. You can override this with "data-badge='inline'" and that pulls it into the form. Google is extremely vague on how to actually move it. You…
Dennis
  • 708
  • 2
  • 10
  • 25
5
votes
0 answers

Is it possible to detect if the Invisible Recaptcha was shown to a user?

In my web page, I validate a form based on Invisible Recaptcha, by calling the calling the function grecaptcha.execute(). Usually this happens invisible to the user; all they see is the form submit that is triggered after grecaptcha is done…
Robert Steward
  • 153
  • 1
  • 10
5
votes
1 answer

Invisible Recaptcha Challenge popup disappears on parent click

I've implemented the google invisible recaptcha on our website, the captcha works fine, but when the recaptcha popup becomes visible and i click on the parentwindow of the popup (not in the challence popup), the popup goes away and the register…
5
votes
0 answers

Google recaptcha spins indefinitely in IE 11 on refresh

Have discovered an issue that when a user hits refresh in IE, Google recaptcha (invisible or v2) will sit and spin indefinitely. From monitoring traffic it appears to not ever make the API calls out to Google for recaptcha when someone clicks the…
5
votes
2 answers

implementing Invisible Google reCaptcha for asp.net application ?

This is my ASP.NET form. I want to add invisible recaptcha to it with server side validation. Can someone please help? I can do client side validation but it doesnt use secret key. My another questions is Do we need secret key for invisible…
Satpal Singh
  • 121
  • 1
  • 2
  • 13
4
votes
0 answers

Issue with Recaptcha SDK Initialization on Android

We have integrated reCaptcha enterprise in our android app. Gradle dependency we are using is 'com.google.android.recaptcha:recaptcha:18.0.1'. There are reports from our users that they are not able to login into the app. We checked this and found…
ichthyocentaurs
  • 2,173
  • 21
  • 35
4
votes
1 answer

Next js Firebase Auth phone number invisible recaptcha

Nextjs Firebase Phone Auth First attempt useEffect() useEffect(() => { window.recaptchaVerifier = new firebase.auth.RecaptchaVerifier('recaptcha', { 'size': 'invisible', 'callback': (response) => { …
tintin
  • 107
  • 2
  • 6
4
votes
0 answers

Is there an Invisible reCaptcha for iOS Application? (don’t require user clicks)

Google offers a great way to protects your native Android app from malicious traffic: SafetyNet reCAPTCHA API With that you can implement an invisible captcha which 0 extra clicks. Check the following short video demo implementation:…
nanz
  • 121
  • 1
  • 6
4
votes
0 answers

firebase.auth.RecaptchaVerifier with reCaptcha v3

I am trying to implement reCaptcha v3 into my site and am currently using React.js and Firebase for Authentication. I was using reCaptcha (v2?) before with Firebase's built in auth method firebase.auth.RecaptchaVerifier following the same method as…
4
votes
0 answers

Recaptcha V3 Always returning 0.9 score, when running through python script

I have implemented recaptcha v3 on form submit, which works fine on normal scenario as I'm getting 0.9 score. But when I try to run it from a python script using selenium, it still gives me 0.9 score, which is incorrect. I tried recaptcha v2, for…
4
votes
0 answers

Positioning recaptcha puzzle challenge when using Invisible recaptcha

Is there a way to integrate the puzzle challenge (when captcha thinks you are a robot) in a specific area of a website (in a target div) when using an invisible recaptcha ? All I tried did fail : using data-badge="inline" only impacts the recaptcha…
Jscti
  • 14,096
  • 4
  • 62
  • 87
4
votes
1 answer

Invisible recaptcha massively increasing first interactive time

Inclusion of Google's 'invisible recaptcha' seems to be massively increasing the 'First interactive' (and subsequently 'consistently interactive') times as measured by Lighthouse. I set up two empty webpages using an HTML5 boilerplate template. …
Andrew Keller
  • 3,198
  • 5
  • 36
  • 51
4
votes
1 answer

invisible recaptcha v2 not checking required input fields

I am adding an invisible recaptcha; for some reason, it doesn't check for required fields anymore. Previously, I would get a notification from Chrome stating that the fields can't be empty. Now, it's just ignoring this and letting me submit empty…
DarkEyeDragon
  • 320
  • 5
  • 15
4
votes
4 answers

Recaptcha gem error "No site key specified."

I am trying to setup Recaptcha in my rails 5 application as it's described in the documentation but it fails. I use this gem: recaptcha (4.6.6), ruby 2.5.0 and rails 5.1.4 In view form: <%= flash[:recaptcha_error] %> <%= recaptcha_tags %> In devise…
bmalets
  • 3,207
  • 7
  • 35
  • 64
1 2
3
18 19