ProxyFF Key-Only Hunter

Focado exclusivamente em capturar Keys e injetar senha RUAN

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);

})();