ProxyFF Key-Only Hunter

Focado exclusivamente em capturar Keys e injetar senha RUAN

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);

})();