Files
limoka/coddrago/modules/DoxTool.py
2025-07-10 21:02:34 +03:00

75 lines
5.4 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ---------------------------------------------------------------------------------
#░█▀▄░▄▀▀▄░█▀▄░█▀▀▄░█▀▀▄░█▀▀▀░▄▀▀▄░░░█▀▄▀█
#░█░░░█░░█░█░█░█▄▄▀░█▄▄█░█░▀▄░█░░█░░░█░▀░█
#░▀▀▀░░▀▀░░▀▀░░▀░▀▀░▀░░▀░▀▀▀▀░░▀▀░░░░▀░░▒▀
# Name: Dox?
# Description: Your Best doxing tool!
# Author: @codrago_m
# ---------------------------------------------------------------------------------
# 🔒 Licensed under the GNU AGPLv3
# 🌐 https://www.gnu.org/licenses/agpl-3.0.html
# ---------------------------------------------------------------------------------
# Author: @codrago
# Commands: gb, deanon
# scope: hikka_only
# meta developer: @codrago_m
# meta banner: https://raw.githubusercontent.com/coddrago/modules/refs/heads/main/banner.png
# meta pic: https://envs.sh/HJM.webp
# ---------------------------------------------------------------------------------
__version__ = (1, 0, 0)
from telethon.tl.types import Message # type: ignore
from .. import loader, utils
import asyncio, random
@loader.tds
class dox(loader.Module):
"""Maybe... doxing tool?"""
strings = {
"name": "DoxTool",
"gb_1": "Searching for the victim's number...",
"gb_2": "Searching for the victim's address and name...",
"gb_3": "Searching for parents...",
"gb_4": "Searching for a school...",
"gb_5": "Finding parents' jobs...",
"gb_r": "My owner behaved badly, so I decided to leak info about him!\n\n├ Phone: wrecked\n├ Country: normal\n├ Region: of liars\n├ Parents: soon will be gone\n├ Address: a ditch on Arbat\n├ Name: why were you born\n├ Middle name: missing\n├ Surname: missing\n├ How many times screwed: 32\n├ Gender: linoleum\n├ House: a ditch on Arbat\n├ Sucks per day: 20 (times) for 10 rub\n├ Hospital: not allowed in\n├ Poop color: none, doesnt eat\n├ Prostate: massaged\n├ Mouth: ruined\n└ #####################\n\nMother: a prostitute\nMothers workplace: the highway\nCountry: in the CIS\nCity: how should I know?\nBorn: somewhere under a fence\n\nFather: a homeless\nWorkplace: begging on the street\nCountry: in the CIS\nCity: how should I know?\nBorn: in the sewers\nSchool: of fools",
"info": "This module is created solely for entertainment purposes, its functionality is solely for the sake of a joke"
}
strings_ru = {
"name": "DoxTool",
"gb_1": "Поиск номера жертвы...",
"gb_2": "Поиск адреса и имени жертвы...",
"gb_3": "Поиск родителей...",
"gb_4": "Поиск школы...",
"gb_5": "Поиск работы родителей...",
"gb_r": "Мой хозяин плохо себя вел, и я решил слить инфу о нем!\n\n├ Телефон: разъебанный\n├ Страна: обычная\n├ Регион: пиздоболов\n├ Родители: скоро не будет\n├ Адрес: канава на Арбате\n├ Имя: нахуй ты родился\n├ Отчество: отсутствует\n├ Фамилия: отсутствует\n├ Сколько раз ебали в дырку: 32\n├ Пол: ленолиум\n├ Дом: канава на Арбате\n├ Сосёт в день: 20 (раз) за 10 руб\n├ Больница: не пускают\n├ Цвет говна: нету, ибо не хавает\n├ Простата: массирована\n├ Рот: выебан\n└ #####################\n\nМать: шлюха\nМесто работы матери: трасса\nСтрана: состоящаяся в СНГ\nГород: я ебу?\nРодилась: где-то под забором\n\nОтец: бомж,\nМесто работы: на улице бичевать, просить мелочь\nСтрана: состоящаяся в СНГ\nГород: я ебу?\nРодился: в канализации\nШкола: далбоебов",
"info": "Этот модуль создан исключительно в развлекательных целях, его функциональность сделана исключительно ради шутки"
}
async def gbcmd(self, message):
"""search in databases eye of god!"""
await utils.answer(message, self.strings["gb_1"])
await asyncio.sleep(1)
await message.edit(self.strings["gb_2"])
await asyncio.sleep(1)
await message.edit(self.strings["gb_3"])
await asyncio.sleep(1)
await message.edit(self.strings["gb_4"])
await asyncio.sleep(1)
await message.edit(self.strings["gb_5"])
await asyncio.sleep(1)
await message.edit(self.strings["gb_r"])
async def deanoncmd(self, message):
"""Full information of user in global database"""
deanon = ["It's bad to do something like this...","Im tired of you!", "One more prank like this and Ill delete your account.", "Didnt you understand the first time?", "Why do you keep doing this??", "We both know that this doesnt do us any good.", "what won't it lead to?"]
await utils.answer(message, random.choice(deanon))
async def dinfocmd(self, message):
"""info of module"""
await utils.answer(message, self.strings["info"])