MCaptcha Auto-Solver (OnlyFaucet)

Auto-solves mCaptcha

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         MCaptcha Auto-Solver (OnlyFaucet)
// @namespace    http://tampermonkey.net/
// @version      1.3
// @author       Shnethan
// @description  Auto-solves mCaptcha
// @match        https://onlyfaucet.com/faucet/*
// @icon         https://www.solflare.com/tkn_lnd_pg_assets/favicons/favicon.ico
// @license      © Shnethan
// @grant        none
// @run-at       document-idle
// ==/UserScript==
 
         /*
                 * Copyright (c) 2026 Shnethan . All rights reserved.
         */

(async function() {

    'use strict';

    const w = s => new Promise(r => {
        let e = document.querySelector(s);
        if (e) return r(e);
        new MutationObserver((_, o) => {
            if (e = document.querySelector(s)) { o.disconnect(); r(e); }
        }).observe(document.body, { childList: true, subtree: true });
    });

    try {
        (await w('#mcaptcha-checkbox-box')).click();
        const c = await w('#mcaptcha-canvas');
        await new Promise(r => setTimeout(r, 1e3));

        const t = c.getContext('2d'), u = c.width / 5, a = [];
        for (let i = 0; i < 5; i++) {
            const d = t.getImageData(~~(i * u + u / 2 - 5), ~~(c.height / 2 - 5), 10, 10).data;
            let n1 = 0, n2 = 0, n3 = 0;
            for (let j = 0; j < d.length; j += 4) { n1 += d[j]; n2 += d[j + 1]; n3 += d[j + 2]; }
            a.push([n1, n2, n3]);
        }

        let m = -1, k = 0;
        for (let i = 0; i < 5; i++) {
            let l = 0;
            for (let j = 0; j < 5; j++) if (i !== j) l += Math.abs(a[i][0] - a[j][0]) + Math.abs(a[i][1] - a[j][1]) + Math.abs(a[i][2] - a[j][2]);
            if (l > m) { m = l; k = i; }
        }

        const e = document.getElementById('mcaptcha-indicator');
        if (e) { e.style.left = k * 20 + '%'; e.style.display = 'block'; }

        await new Promise(r => setTimeout(r, 4e3));

        const g = c.getBoundingClientRect();
        c.dispatchEvent(new MouseEvent('click', {
            clientX: g.left + k * g.width / 5 + g.width / 10,
            clientY: g.top + g.height / 2,
            bubbles: 1, cancelable: 1
        }));

        const q = await w('#mcaptcha-confirm-btn');
        if (q) {
            q.dispatchEvent(new PointerEvent('pointerdown', { bubbles: 1 }));
            setTimeout(() => q.click(), 150);
        }
    } catch (e) {}
})();