419 questions
38
votes
8
answers
95k
views
How to use .env variables in Nuxt 2 or 3?
I have .env file in the project root, and in my nuxt config I am using variables to configure ReCaptcha like this:
import dotenv from 'dotenv'
dotenv.config()
export default {
modules: [
[...
47
votes
3
answers
107k
views
How does reCAPTCHA 3 know I'm using Selenium/chromedriver?
I'm curious how reCAPTCHA v3 works. Specifically the browser fingerprinting.
When I launch an instance of Chrome through Selenium/chromedriver and test against reCAPTCHA 3 (https://recaptcha-demo....
66
votes
4
answers
297k
views
How can I bypass the Google CAPTCHA with Selenium and Python?
How can I bypass the Google CAPTCHA using Selenium and Python?
When I try to scrape something, Google give me a CAPTCHA. Can I bypass the Google CAPTCHA with Selenium Python?
As an example, it's ...
13
votes
4
answers
32k
views
Google ReCAPTCHA how to make required?
Does anyone know how to make the "Google ReCAPTCHA (v2)" be "required" in a form?
I mean no form submission until recaptcha is filled-in?
I use ParsleyJs in my form, but didnt find a way to make it ...
118
votes
18
answers
173k
views
How do I show multiple recaptchas on a single page?
I have 2 forms on a single page. One of the forms has a Recaptcha displaying all the time. The other should display a Recaptcha only after a certain event such as maxing out login attempts. So ...
20
votes
2
answers
59k
views
Find the reCAPTCHA element and click on it -- Python + Selenium
I need some help.
There is URL: https://www.inipec.gov.it/cerca-pec/-/pecs/companies.
I need to click checkbox Captcha:
My code is look like:
import os, urllib.request, requests, datetime, time, ...
77
votes
12
answers
165k
views
How to validate Google reCAPTCHA v3 on server side?
I've just set up the new google recaptcha with checkbox, it's working fine on front end, however I don't know how to handle it on server side using PHP. I've tried to use the old code below but the ...
443
votes
26
answers
581k
views
Using reCAPTCHA on localhost
I'm developing a website using PHP and I want to make a human verification in one of the sessions. For the development, I'm initially running the system locally and when it is ready, I'm going to put ...
165
votes
16
answers
439k
views
How can I validate google reCAPTCHA v2 using javascript/jQuery?
I have a simple contact form in aspx.
I want to validate the reCaptcha (client-side) before submitting the form.
Please help.
Sample code:
<%@ Page Language="VB" AutoEventWireup="false" ...
176
votes
14
answers
76k
views
Has reCaptcha been cracked / hacked / OCR'd / defeated / broken? [closed]
Have any programming methods have been used to defeat reCAPTCHA?
I'm interested in seeing evidence and potentially demonstrations that reCAPTCHA in particular has been made obsolete by completely ...
128
votes
24
answers
185k
views
ReCaptcha API v2 Styling
I have not had much success finding how to style Google's new recaptcha (v2). The eventual goal is to make it responsive, but I am having difficulty applying styling for even simple things like width.
...
106
votes
8
answers
311k
views
Google Recaptcha v3 example demo
Until now, I was working with Google Recaptcha v2, but now I want to update my WebApp using the lastest version (v3).
Is it possible to anyone add a fully working Google Recaptcha v3 example for a ...
17
votes
4
answers
94k
views
Is there any possible ways to bypass cloudflare security checks?
We all know, sometimes cloudflare like to check their client visitor to make sure that the visitor isn't a real human. The security check require us to pass Google Recaptcha. What i want to ask is it ...
2
votes
2
answers
10k
views
How to interact with the reCAPTCHA audio element using Selenium and Python
I want to, click on the button to resolve the captcha through the audio, but selenium does not detect the specified "id".
browser.get("https://www.google.com/recaptcha/api2/demo")
mainWin = browser....
3
votes
1
answer
20k
views
how to test Recaptcha with jQuery Validate plugin
I am using validate jquery plugin and recaptcha for a contact form and i woudld like to know how can i check if the code in the captcha is correct before the form get submitted if not send an error ...