22 lines
596 B
HTML
22 lines
596 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div id="captchaType" data-captcha-type="arkoseLabs"></div>
|
|
|
|
<script>
|
|
window.onmessage = function (event) {
|
|
if (event.data === "mock-solution" || event.data === "mock-solved") {
|
|
fetch(
|
|
"arkose_labs_api.sjs" +
|
|
(event.data === "mock-solved" ? "?solved" : "")
|
|
)
|
|
.then(r => r.json())
|
|
.then(() => {
|
|
window.parent.postMessage("mocked-request", "*");
|
|
});
|
|
}
|
|
};
|
|
window.parent.postMessage("ready", "*");
|
|
</script>
|
|
</body>
|
|
</html>
|