Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] Cloudflare not solving turnstile #57

Open
Newcool1230 opened this issue Jul 12, 2024 · 5 comments
Open

[Bug] Cloudflare not solving turnstile #57

Newcool1230 opened this issue Jul 12, 2024 · 5 comments

Comments

@Newcool1230
Copy link

I saw the update for the cloudflare turnstile https://github.com/NopeCHALLC/nopecha-extension/releases/tag/0.4.12 but it still doesn't seem to be working for me. (On the latest firefox version https://addons.mozilla.org/en-US/firefox/addon/noptcha/)

It just stays unchecked like this

firefox_2F2OfkxBEy

Am I doing this wrong? The settings seems to be correct.
s802eJrHR9

@subradrad

This comment was marked as spam.

@nimbus2332

This comment was marked as spam.

1 similar comment
@AYOUBZER

This comment was marked as spam.

@nimbus2332
Copy link

nimbus2332 commented Jul 13, 2024

When will it be fixed? I tried to simulate a click through JS, but it didn't work, ChatGPT says that the code doesn't work because the iframe is loaded from another domain. Such as security, etc.

function handleVerification() {
let iframe = document.querySelector('iframe[title*="Cloudflare"]');
if (iframe) {
setTimeout(() => {
document.body.appendChild(iframe);
let doc = iframe.contentWindow.document;
let checkbox = doc.querySelector('input[type="checkbox"]');
if (checkbox) {
checkbox.click();
setTimeout(() => {
}, 4000);
}
}, 3000);
} else {
}

setTimeout(() => {
    let confirmInput = document.querySelector('input[value*="Verify"]');
    if (confirmInput) {
        confirmInput.click();
        setTimeout(() => {
        }, 3000);
    }
}, 7000); 

}

handleVerification();

@Le0Developer
Copy link
Collaborator

If it was that simple, it'd be fixed already.

Repository owner locked as spam and limited conversation to collaborators Jul 13, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants