Autopass Cloudflare CAPTCHA

Violentmonkey Scripts

< Autopass Cloudflare CAPTCHA 피드백

리뷰: 보통 - 동작하나 버그 있음

§
작성: 2024-03-21

async function VerifyYouAreHuman_02() {
let dom = await global_module.waitForElement("input[type='checkbox']", null, null, 200, -1);
global_module.clickElement($(dom).eq(0)[0]);
dom = await global_module.waitForElement("span[class='mark']", null, null, 200, -1);
global_module.clickElement($(dom).eq(0)[0]);
}

now fail to click checkbox , always reload CAPTCHA

let dom = await global_module.waitForElement("input[type='checkbox']", null, null, 200, -1);
global_module.clickElement($(dom).eq(0)[1]);

bypass checkbox click for work

§
작성: 2024-03-22

let dom = await global_module.waitForElement("input[value='Verify you are human'][type='button']", null, null, 200, -1);
global_module.clickElement($(dom).eq(0)[0]);

no work too

댓글 남기기

댓글을 남기려면 로그인하세요.