ReCaptcha V3 - beta bypass method.

landrady

New member
I made a lot of tests, and I'am suspecting the url parameter I'am passing is wrong. Because the url is ok in the browser:
But the site is calling the JS on submit form as the code below:



var recaptchaLoaded = false;
var attemptedSubmit = false;
var form = document.getElementById('UsuarioLoginForm');
var button = document.getElementById('btn-submit');
form.onsubmit = (function(event) {
event.preventDefault();
grecaptcha.ready(function () {
button.disabled = true;
grecaptcha.execute('HISCODE', {action: 'submit'}).then(function (token) { var input = document.createElement('input'); input.setAttribute('type', 'hidden'); input.setAttribute('name', 'g-recaptcha-response'); input.setAttribute('value', token); form.appendChild(input); form.submit(); }); }); });

The 2captcha ever givesme a token, but it is never valid. The url to pass is in somewhere? In some call that I can discover?