Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // script by Tonny/Pep
- const nicks = [
- "H4CK3R", "H4CKER", "PEDRO", "TONI", "ANTONIO", "ANTONIOPEDRO"
- ];
- const verificarNick = async (nick) => {
- const resposta = await fetch(`https://account.aq.com/CharPage?id=${nick}`);
- const texto = await resposta.text();
- if (texto.includes("Not Found")) {
- console.log(`${nick} não existe.`);
- }
- };
- const testarLetras = async () => {
- // Testa combinações de letras de 3 caracteres (de AAA até ZZZ)
- const alfabeto = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
- for (let i = 0; i < alfabeto.length; i++) {
- for (let j = 0; j < alfabeto.length; j++) {
- for (let k = 0; k < alfabeto.length; k++) {
- let letra = `${alfabeto[i]}${alfabeto[j]}${alfabeto[k]}`;
- await verificarNick(letra);
- await new Promise(resolve => setTimeout(resolve, 3000)); // Atraso de 3 segundos entre as verificações
- }
- }
- }
- };
- const tonny = async (index = 0) => {
- if (index < nicks.length) {
- await verificarNick(nicks[index]);
- setTimeout(() => tonny(index + 1), 3000); // espera 3 segundos antes de testar o próximo nick
- } else {
- // Quando acabar a lista de nicks, começa a testar combinações de letras
- await testarLetras();
- }
- };
- // Inicializando a execução da função
- tonny();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement