-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpasta.py
More file actions
34 lines (32 loc) · 1.03 KB
/
pasta.py
File metadata and controls
34 lines (32 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from random import randint
from time import sleep
from pyrogram import Client, filters
from command import fox_command, fox_sudo, who_message
from requirements_installer import install_library
import os
install_library('faker')
from faker import Faker
@Client.on_message(fox_command("doxx", "Doxx", os.path.basename(__file__)) & fox_sudo())
async def hack(client, message):
message = await who_message(client, message)
fake = Faker('ru_RU')
await message.edit('Доксим тя пидор')
if randint(0, 1) == 0:
name = 'Артур Ламаев'
else:
name = fake.name()
pasta = f'''
Докс на тя:
- - - - - -
ФИО : {name}
Адрес электронной почты : {fake.email()}
Телефон : {fake.phone_number()}
Адрес регистрации : {fake.street_address()}
Пароль к почте : {fake.password()}
Карта : {fake.credit_card_full()}
Паспорт: {fake.passport_number()}
- - - - - -
Жди докс бошеее
'''
sleep(2)
await message.edit(pasta)