Questions tagged [grecaptcha]

69 questions
0
votes
1 answer

reCaptcha is not calling the onload function

I am trying to implement reCaptcha for submission of form but I am having trouble implement the google captcha javascript . I am not getting any console message in console.
Roshan
  • 71
  • 7
0
votes
1 answer

How to find the analytics page for a Google reCAPTCHA registration

This might be a stupid question, but the Google developer portal is horrible... I've recently signed up for an API key pair for Google's reCAPTCHA service (https://developers.google.com/recaptcha) But it seems that after the initial signup, the…
tosho-ait
  • 1
  • 2
0
votes
0 answers

Is there way to limit the user in reCaptcha V2 image matching challange. Like if user fail image maching challange for 5 time the then return fail

I am using reCaptcha V2. Sometime user knowingly or unknowingly clicking the wrong image at the image maching challange. So the new image grid is keep comming and comming and user keep cliking the wrong images again and again. My question is , Is…
Joy G
  • 1
0
votes
0 answers

How to set the container for recaptcha using grecaptcha.execute

I am experiencing an issue where when recaptcha is rendered on the page, it is rendered at the top instead of the middle of the viewport. I would like to have it display in the middle of the viewport so users don't need to scroll up to view it. I am…
Andrew Grass
  • 242
  • 1
  • 8
0
votes
1 answer

how to capture the recaptcha Response in jmeter from a get request

I am having a get request containing reCaptcha on submitting a contact form with a Post request. And when making scripts for Performance testing, there in response, reCaptcha value, which is needed in the post request. Can anyone help me out with…
0
votes
1 answer

How to use Python Requests to submit a form with invisible reCAPTCHA?

I want to send anonymous emails using Python. I use an online anonymous email sending tool called emkei.cz. I want to use this same tool programmatically. How to fill out that form on the website (emkei.cz) and submit it to send an anonymous email…
0
votes
0 answers

How to extract reCAPTCHA from a website and solve it externally?

I would like to know if there's any possibililty to extract reCATPCHA from any website and solve it externally, as form example, 2captcha.com does. Since it just asks you for the data-sitekey and page url…
0
votes
1 answer

Derive a dynamically generated value from js code

https://whalewisdom.com/session/new On the above page, the raw HTML page contains something like the following.
user1424739
  • 11,937
  • 17
  • 63
  • 152
0
votes
1 answer

ReCAPTCHA verification is sending a SyntaxError

So today I was trying to verify a CAPTCHA, and somehow is sending me an error (I'm sure I'm doing things okay). This is the code I wrote to verify it (I'm doing this on the frontend just for education purposes with the CAPTCHA) try { const…
user14623448
0
votes
1 answer

Can i implement Recaptcha V3 without verifying token?

The Google Recaptcha V3 docs shows the easiest way to implement is using what they call "Automatically bind the challenge to a button" https://developers.google.com/recaptcha/docs/v3#automatically_bind_the_challenge_to_a_button From their example,…
Emil Østervig
  • 440
  • 4
  • 20
0
votes
1 answer

What is Assessment in AssessmentName in Google recaptcha

We need to give the AssessmentName CreateAssessmentRequest in google captcha varification. It is in the format projects/{projectname}/assessments/{assessment}. what is this {assessment} part refers…
Anish Karunakaran
  • 987
  • 3
  • 17
  • 39
0
votes
1 answer

Google invisible reCaptcha is only working in Incognito mode

I have a Google reCAPTCHA setup on my contact form in my website. and i'm trying to test it in both localhost and server as well but recaptcha is only working in incognito mode . without capturing reCAPTCHA mails are sending . Here my problem is…
0
votes
0 answers

Getting a different kind of token for google recapthca v3

On my backend, I noticed that I am receiving google ReCaptcha v3 tokens like this, Please help me to understand…
0
votes
1 answer

How to make alert() when recaptcha is solved?

I want to execute a function (lets make alert()) at the time when recaptcha is solved by a user. When it is solved, the green tick appears. It seems that it is possible only with the grecaptcha.render() function. Yes? Example site where it should…
oleedd
  • 388
  • 2
  • 15
0
votes
1 answer

Angular 6 - Installing ng-recaptcha gives error TS1005: ';' expected

I want to use ReCaptcha V3 in my Angular 6 project so I have installed ng-recaptcha using the command npm i ng-recaptcha --save as per the doc https://www.npmjs.com/package/ng-recaptcha#installation. After the installation, the error…