File size: 10,159 Bytes
2242e9d
 
 
 
 
 
 
 
 
 
7801f49
2242e9d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206840f
2242e9d
 
 
 
 
 
 
7801f49
 
 
 
 
 
 
 
2242e9d
 
 
 
94c8f3c
2242e9d
 
 
 
 
 
 
 
 
 
 
 
206840f
 
 
 
2242e9d
206840f
 
 
 
 
 
 
2242e9d
47cd08e
2242e9d
 
206840f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2242e9d
 
 
 
 
 
 
 
 
 
 
 
1ff2d48
 
 
 
 
2242e9d
1d3df52
2242e9d
1ff2d48
2242e9d
 
974a56d
2242e9d
 
 
 
 
 
 
 
1ff2d48
 
 
 
 
2242e9d
 
 
da9deb0
2242e9d
 
 
974a56d
2242e9d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bb78f77
 
 
 
1ff2d48
bb78f77
 
1ff2d48
bb78f77
 
 
 
1ff2d48
 
 
 
 
 
 
 
2242e9d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0ed11be
 
 
 
2242e9d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1ff2d48
2242e9d
7801f49
 
0ed11be
 
 
 
1ff2d48
bb78f77
2242e9d
 
 
 
 
 
 
1ff2d48
2242e9d
 
 
 
 
 
 
 
1ff2d48
2242e9d
 
 
 
 
 
 
 
 
1ff2d48
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
import os
import time
import json
import asyncio
import io
import os
import re
import logging
import string
import random
import requests
from pyrogram import *
from pyrogram.types import *
from pyrogram.errors import *
from database import db
from logger import LOGS

from pyrogram import Client, filters
from pyrogram.enums import ChatMemberStatus, ChatMembersFilter, ChatType
from pyrogram.types import (
    CallbackQuery,
    InlineKeyboardMarkup,
    InlineKeyboardButton,
    Message
)

from PIL import Image, ImageDraw, ImageFont, ImageFilter

logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)

user_list = []
captcha_texts = {}

def thanks_hacker_by_randydev():
    url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR0u8UqJ2JDhfmPOCb_zAHjUQG2NYMjTwLbkq_sQhCQOxX8hn66YbaGFvLL&s=10"
    response = requests.get(url)
    image_hacker = "hacker.png"
    with open(image_hacker, "wb") as f:
        f.write(response.content)
    return image_hacker

async def remove_captcha_after_timeout(client, user_id, delay=300):
    await asyncio.sleep(delay)
    if user_id in captcha_texts:
        del captcha_texts[user_id]
        await client.send_message(user_id, "⏰ Your CAPTCHA verification has expired. Please try again.")
        logger.info(f"CAPTCHA for user {user_id} has expired and been removed.")

def generate_captcha_multiple_choice():
    letters = string.ascii_uppercase + string.digits
    captcha_text = ''.join(random.choice(letters) for _ in range(5))
    choices = [captcha_text]
    for _ in range(2):
        wrong_choice = ''.join(random.choice(letters) for _ in range(5))
        while wrong_choice in choices:
            wrong_choice = ''.join(random.choice(letters) for _ in range(5))
        choices.append(wrong_choice)
    random.shuffle(choices)

    width, height = 200, 80
    background_color = (random.randint(200, 255), random.randint(200, 255), random.randint(200, 255))  # Warna pastel
    img = Image.new('RGB', (width, height), color=background_color)
    d = ImageDraw.Draw(img)

    for _ in range(500):
        x = random.randint(0, width)
        y = random.randint(0, height)
        noise_color = (random.randint(150, 200), random.randint(150, 200), random.randint(150, 200))
        d.point((x, y), fill=noise_color)
    
    try:
        font = ImageFont.truetype("arial.ttf", 45)
    except IOError:
        font = ImageFont.load_default()

    text_width, text_height = d.textsize(captcha_text, font=font)
    text_x = (width - text_width) / 2
    text_y = (height - text_height) / 2
    
    text_image = Image.new('RGBA', (text_width, text_height), (255, 255, 255, 0))
    text_draw = ImageDraw.Draw(text_image)
    text_draw.text((0, 0), captcha_text, font=font, fill=(0, 0, 0))
    rotated_text = text_image.rotate(random.randint(-25, 25), expand=1)
    img.paste(rotated_text, (int(text_x), int(text_y)), rotated_text)

    for _ in range(5):
        start = (random.randint(0, width), random.randint(0, height))
        end = (random.randint(0, width), random.randint(0, height))
        line_color = (random.randint(0, 150), random.randint(0, 150), random.randint(0, 150))
        d.line([start, end], fill=line_color, width=2)
    
    img = img.filter(ImageFilter.BLUR)
    img_path = f"captcha_{captcha_text}.png"
    img.save(img_path)
    return captcha_text, img_path, choices

@Client.on_chat_join_request(filters.chat("KillerXSupport"))
async def join_request(client: Client, event: ChatJoinRequest):
    member = await client.get_chat_member(event.chat.id, "me")
    if member.status != ChatMemberStatus.ADMINISTRATOR:
        return await client.send_message(event.chat.id, text="I am not an administrator in this group.")
    async for m in client.get_chat_members(event.chat.id, filter=ChatMembersFilter.ADMINISTRATORS):
        if not m.user.is_bot:
            user_list.append(m.user.id)
    try:
        chat_link = await client.export_chat_invite_link(event.chat.id)
    except ChatAdminRequired:
        await client.send_message(event.chat.id, text="I need to be an administrator to perform this action.")
        return
    captcha_text, img_path, choices = generate_captcha_multiple_choice()
    captcha_texts[event.from_user.id] = captcha_text
    captcha_texts["chat_id"] = event.chat.id
    captcha_texts["chat_link"] = chat_link
    keyboard = InlineKeyboardMarkup(
        [
            [InlineKeyboardButton(choice, callback_data=f"verify_{event.from_user.id}_{choice}")]
            for choice in choices
        ] + [
            [InlineKeyboardButton("πŸ”„ Refresh CAPTCHA", callback_data="refresh_captcha")],
            [InlineKeyboardButton("❌ Cancel", callback_data="cancel_captcha")]
        ]
    )
    if event.chat.type == ChatType.SUPERGROUP:
        try:
            await client.send_message(
                event.chat.id,
                text=f" πŸ•¦ Verify that you {event.from_user.first_name} are human!",
                reply_markup=create_button_userinfo(event.from_user.id, client.me.username)
            )
            await client.send_photo(
                event.from_user.id,
                photo=img_path,
                caption=f"❗️ **Verify that you are human!**\n\n❔ Please select the correct CAPTCHA text shown in the image below.",
                reply_markup=keyboard
            )
            os.remove(img_path)
            asyncio.create_task(remove_captcha_after_timeout(client, event.from_user.id))
        except Exception as e:
            await client.send_message(
                event.chat.id,
                text=str(e)
            )
            logger.error(str(e))

@Client.on_callback_query(filters.regex("^cancel_captcha$"))
async def cancel_captcha_callback(client: Client, cb: CallbackQuery):
    user_id = cb.from_user.id
    if user_id in captcha_texts:
        del captcha_texts[user_id]
        logger.info(f"User {user_id} has canceled CAPTCHA verification.")
        await cb.edit_message_text(
            "❌ CAPTCHA verification has been canceled. If you wish to try again,",
            disable_web_page_preview=True
        )
        await cb.answer("CAPTCHA verification canceled.", show_alert=False)
    else:
        await cb.answer("No active CAPTCHA verification found.", show_alert=True)

@Client.on_callback_query(filters.regex("^close$"))
async def close_final(client: Client, cb: CallbackQuery):
    await cb.message.delete()

def create_button_join_group(chat_link):
    return InlineKeyboardMarkup(
        [
            [InlineKeyboardButton("πŸ‘οΈ Join chat", url=chat_link")],
            [InlineKeyboardButton("πŸ”˜ Close", callback_data="close")],
        ]
    )

def create_button_userinfo(user_id, username):
    return InlineKeyboardMarkup(
        [
            [InlineKeyboardButton("πŸ‘€ Chmod +W $USER", url=f"tg://user?id={user_id}")],
            [InlineKeyboardButton("πŸ”” Check human Bot", url=f"https://t.me/{username}")],
        ]
    ) 

@Client.on_callback_query(filters.regex("^refresh_captcha$"))
async def refresh_captcha_callback(client: Client, cb: CallbackQuery):
    user_id = cb.from_user.id
    if user_id in captcha_texts:
        del captcha_texts[user_id]
    captcha_text, img_path, choices = generate_captcha_multiple_choice()
    captcha_texts[user_id] = captcha_text
    keyboard = InlineKeyboardMarkup(
        [
            [InlineKeyboardButton("πŸ”„ Refresh CAPTCHA", callback_data="refresh_captcha")],
            [InlineKeyboardButton("βœ… Verify", callback_data="verify_captcha")],
            [InlineKeyboardButton("❌ Cancel", callback_data="cancel_captcha")]
        ]
    )
    await cb.edit_message_media(
        media=InputMediaPhoto(
            img_path,
            caption=f"❗️ **Verify that you are human!**\n\n❔ Please select the correct CAPTCHA text shown in the image below.",
        ),
        reply_markup=keyboard
    )
    os.remove(img_path)
    await cb.answer("CAPTCHA refreshed!", show_alert=False)

@Client.on_callback_query(filters.regex("^verify_"))
async def verify_captcha_multiple_choice_callback(client: Client, cb: CallbackQuery):
    data = cb.data.split("_")
    if len(data) != 3:
        await cb.answer("Invalid data format.", show_alert=True)
        return
    _, user_id_str, user_choice = data
    try:
        user_id = int(user_id_str)
    except ValueError:
        await cb.answer("Invalid user ID.", show_alert=True)
        return
    if user_id not in captcha_texts:
        await cb.answer("❗️ Please start the CAPTCHA verification first.", show_alert=True)
        return
    correct_captcha = captcha_texts.get(user_id?
    if user_choice == correct_captcha:
        hacker_image = thanks_hacker_by_randydev()
        await cb.edit_message_media(
            media=InputMediaPhoto(
                hacker_image,
                caption="βœ… CAPTCHA verification successful!"
            ),
            reply_markup=create_button_join_group(captcha_texts.get("chat_link"))
        )
        logger.info(f"User {user_id} successfully verified CAPTCHA.")
        await client.approve_chat_join_request(
            chat_id=captcha_texts.get("chat_id"),
            user_id=user_id
        )
        del captcha_texts[user_id]
        del captcha_texts["chat_id"]
        del captcha_texts["chat_link"]
    else:
        await cb.edit_message_text("❌ Incorrect CAPTCHA. Please try again")
        await client.decline_chat_join_request(
            chat_id=captcha_texts.get("chat_id"),
            user_id=user_id
        )
        del captcha_texts[user_id]
        del captcha_texts["chat_id"]
        del captcha_texts["chat_link"]

@Client.on_callback_query(filters.regex("^verify_captcha$"))
async def verify_captcha_callback(client: Client, cb: CallbackQuery):
    user_id = cb.from_user.id
    if user_id not in captcha_texts:
        await cb.answer("❗️ Please start the CAPTCHA verification first", show_alert=True)
        return
    await cb.message.reply_text("πŸ” **Please enter the CAPTCHA text exactly as shown in the image:**")
    await cb.answer()
    logger.info(f"User {user_id} is attempting to verify CAPTCHA.")