ProxyFF Key-Only Hunter

Focado exclusivamente em capturar Keys e injetar senha RUAN

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         ProxyFF Key-Only Hunter
// @namespace    http://tampermonkey.net/
// @version      5.0
// @description  Focado exclusivamente em capturar Keys e injetar senha RUAN
// @author       Gemini
// @match        *://authproxyff.up.railway.app/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const SENHA = "RUAN";

    // Interface Minimalista
    const panel = document.createElement('div');
    panel.style = "position: fixed; top: 10px; right: 10px; z-index: 99999; background: #000; color: #fbff00; padding: 10px; border: 2px solid #fbff00; font-family: sans-serif; font-size: 12px; width: 220px; border-radius: 10px; box-shadow: 0 0 15px #000;";
    panel.innerHTML = `
        <div style="text-align:center; font-weight:bold; margin-bottom:10px;">🔑 KEY HUNTER</div>
        <button id="scanBtn" style="width:100%; background:#fbff00; color:#000; border:none; padding:8px; font-weight:bold; cursor:pointer; border-radius:5px;">BUSCAR KEYS</button>
        <div id="res" style="margin-top:10px; max-height:250px; overflow-y:auto;"></div>
    `;
    document.body.appendChild(panel);

    // Função para preencher senha automaticamente
    function autoAuth() {
        const inputs = document.querySelectorAll('input');
        inputs.forEach(i => {
            if (i.type === 'password' || i.name.includes('key') || i.placeholder.includes('key')) {
                i.value = SENHA;
                i.style.backgroundColor = "#fff9c4"; // Destaque suave
            }
        });
    }

    // Busca profunda apenas por keys
    async function findKeys() {
        const resDiv = document.getElementById('res');
        resDiv.innerHTML = "<span style='color:white;'>Procurando...</span>";
        let keys = new Set();
        const regex = /proxyff-[\w-]+/gi;

        // 1. Scan no HTML e Atributos
        const html = document.documentElement.innerHTML;
        (html.match(regex) || []).forEach(k => keys.add(k));

        // 2. Scan em Scripts Externos
        const scripts = Array.from(document.querySelectorAll('script[src]'));
        for (const s of scripts) {
            try {
                const r = await fetch(s.src);
                const t = await r.text();
                (t.match(regex) || []).forEach(k => keys.add(k));
            } catch(e) {}
        }

        // Mostrar Resultados
        if (keys.size > 0) {
            resDiv.innerHTML = "";
            keys.forEach(k => {
                const item = document.createElement('div');
                item.style = "background:#222; padding:8px; margin-bottom:5px; border-radius:5px; font-size:10px; color:#fff; border:1px solid #444;";
                item.innerHTML = `
                    <div style="margin-bottom:5px; word-break:break-all;">${k}</div>
                    <button style="width:100%; background:#444; color:#fff; border:none; padding:3px; cursor:pointer;" onclick="navigator.clipboard.writeText('${k}'); alert('Copiada!')">COPIAR KEY</button>
                `;
                resDiv.appendChild(item);
            });
        } else {
            resDiv.innerHTML = "<span style='color:red;'>Nenhuma key encontrada.</span>";
        }
    }

    document.getElementById('scanBtn').onclick = findKeys;

    // Injeta a senha assim que carrega e novamente após 2 segundos
    autoAuth();
    setTimeout(autoAuth, 2000);

})();