Spaces:
Running
Running
File size: 20,579 Bytes
14c0f0d 6305f6e 11402c2 0987366 38e11f3 11402c2 d8f2fc8 11402c2 0987366 6305f6e 11402c2 f74a9e2 11402c2 f74a9e2 11402c2 60762ab 11402c2 bf4e789 f74a9e2 11402c2 38d3d27 11402c2 38e11f3 11402c2 38e11f3 11402c2 0987366 38d3d27 11402c2 cbab1cd 11402c2 cbab1cd 11402c2 cbab1cd 11402c2 cbab1cd 5502e89 cbab1cd 0987366 cbab1cd d80a48b 11402c2 b5d2e74 1e5e9c7 d8f2fc8 8717f89 7bb424a 8717f89 11402c2 aeb19ba 38d3d27 cbab1cd 5502e89 cbab1cd 6304702 cbab1cd d80a48b 6305f6e d80a48b 6305f6e b5d2e74 d8f2fc8 11402c2 38d3d27 cbab1cd 11402c2 |
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 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
# Copyright (C) 2019-2025 TeamKillerX <https://github.com/TeamKillerX>
#
# This file is part of TeamKillerX project,
# and licensed under GNU Affero General Public License v3.
# See the GNU Affero General Public License for more details.
#
# All rights reserved. See COPYING, AUTHORS.
#
import re
import asyncio
import logging
from pyrogram import *
from pyrogram.enums import MessageEntityType
from pyrogram.errors import ChannelPrivate
from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton
from config import *
from database import db
from helper_regex import *
logging.basicConfig(
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
level=logging.INFO,
datefmt="%Y-%m-%d %H:%M:%S",
)
logging.getLogger("pyrogram").setLevel(logging.WARNING)
eval_regex = r"^(\.e(?:val)?|\.exec|\.sh|\.term|\.python|\.ex|\.bash|\.ls)(\s|$)"
bot = Client(
"antibot",
api_id=API_ID,
api_hash=API_HASH,
bot_token=BOT_TOKEN,
)
def has_code_entity(message):
if not message.entities:
return False
for entity in message.entities:
if entity.type == MessageEntityType.PRE:
return True
return False
@bot.on_callback_query(filters.regex(r"^unwarn_(\d+)$"))
async def unwarn_button(client, callback_query):
user_id = int(callback_query.match.group(1))
chat_id = callback_query.message.chat.id
from_user = callback_query.from_user
try:
member = await client.get_chat_member(chat_id, from_user.id)
if member.status.value not in ("administrator", "creator"):
await callback_query.answer("β Hanya admin yang bisa menghapus peringatan!", show_alert=True)
return
except Exception:
await callback_query.answer("β οΈ Gagal memverifikasi status admin.", show_alert=True)
return
await db.warns.delete_one({"chat_id": chat_id, "user_id": user_id})
await callback_query.answer(f"β
Peringatan untuk <code>{user_id}</code> telah dihapus.", show_alert=True)
@bot.on_callback_query(filters.regex(r"^warn_(\d+)$"))
async def warn_button(client, callback_query):
user_id = int(callback_query.match.group(1))
chat_id = callback_query.message.chat.id
from_user = callback_query.from_user
try:
member = await client.get_chat_member(chat_id, from_user.id)
if member.status.value not in ("administrator", "creator"):
await callback_query.answer("β Hanya admin yang bisa memberikan peringatan!", show_alert=True)
return
except Exception:
await callback_query.answer("β οΈ Gagal memverifikasi status admin.", show_alert=True)
return
warn_data = await db.warns.find_one({"chat_id": chat_id, "user_id": user_id})
warn_count = 1
if warn_data:
warn_count = warn_data.get("count", 0) + 1
await db.warns.update_one(
{"chat_id": chat_id, "user_id": user_id},
{"$set": {"count": warn_count}},
upsert=True
)
else:
await db.warns.insert_one({"chat_id": chat_id, "user_id": user_id, "count": warn_count})
if warn_count >= 3:
try:
await client.ban_chat_member(
chat_id,
user_id,
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Unban", callback_data=f"unban_{user_id}"
)
]
]
)
)
await callback_query.message.reply_text(
f"π« User <code>{user_id}</code> telah dihapus setelah 3 kali peringatan."
)
await db.warns.delete_one({"chat_id": chat_id, "user_id": user_id})
except Exception as e:
await callback_query.message.reply_text(f"Gagal menghapus user: {e}")
else:
await callback_query.answer(f"β οΈ Peringatan ke {warn_count} diberikan.", show_alert=True)
@bot.on_callback_query(filters.regex(r"^unban_(\d+)$"))
async def unban_button(client, callback_query):
user_id = int(callback_query.match.group(1))
chat_id = callback_query.message.chat.id
from_user = callback_query.from_user
try:
member = await client.get_chat_member(chat_id, from_user.id)
if member.status.value not in ("administrator", "creator"):
await callback_query.answer("β Hanya admin yang bisa menghapus larangan!", show_alert=True)
return
except Exception:
await callback_query.answer("β οΈ Gagal memverifikasi status admin.", show_alert=True)
return
try:
await client.unban_chat_member(chat_id, user_id)
await callback_query.message.reply_text(
f"β
User <code>{user_id}</code> telah dihapus dari larangan."
)
except Exception as e:
await callback_query.message.reply_text(f"Gagal menghapus larangan: {e}")
@bot.on_message(filters.command("start") & filters.private)
async def start_command(client, message):
reply_markup = InlineKeyboardMarkup( # type: ignore
[
[
InlineKeyboardButton( # type: ignore
"Add to Your Group", url=f"https://t.me/{client.me.username}?startgroup=true&admin=manage_chat+change_info+post_messages+edit_messages+delete_messages+invite_users+restrict_members+pin_messages+promote_members+manage_video_chats+anonymous=false"
)
]
]
)
await db.antieval.update_one(
{"bot_id": client.me.id},
{"$addToSet": {"user_id": message.from_user.id}},
upsert=True,
)
await client.send_message(
-1002407639480,
"Anti Eval Bot (Start) Logs\n\n"
f"First Name: {message.from_user.mention}\n"
f"UserID: `{message.from_user.id}`\n"
f"Username: `{message.from_user.username if message.from_user else None}`\n",
reply_markup=InlineKeyboardMarkup([[
InlineKeyboardButton("π View User", url=f"tg://openmessage?user_id={message.from_user.id}")
]])
)
await message.reply_text(
f"""
π **Welcome to Anti Eval Guard!**
π« Bot ini dibuat khusus untuk **melindungi grup Telegram dari eval code, promosi gelap, dan kata kasar.** Cocok buat komunitas developer, server publik, atau grup pribadi yang ingin bersih dari spam!
π‘οΈ **FITUR UTAMA:**
β’ Deteksi & hapus otomatis kode berbahaya (Python, JS, SH, PHP, DLL)
β’ Blokir teks promosi seperti "jasa hack", "jual akun", dll
β’ Filter kata kasar, toxic, dan rasis (Indo)
β’ Inline, forward, bahkan markdown tak bisa lolos
β’ Support AI powered moderation (v2)
π₯ **Note:** Pastikan bot jadi **admin** dan punya izin `Delete`, `Ban`, `Restrict` agar fitur bekerja maksimal!
π Powered by Ryzenth API β sistem AI moderasi canggih & cepat.
""",
reply_markup=reply_markup
)
@bot.on_message(filters.command("addmoduser") & filters.group)
async def addwhitelist(client, message):
if message.from_user.id not in [6477856957]:
return await message.reply_text("LU SIAPA? GAK ADA IZIN GUE!")
if len(message.command) != 2:
return await message.reply_text("GAK ADA USER ID NYA? GIMANA NARIK BOT KE GRUP LU?")
user_id = int(message.command[1])
try:
get_user = await db.antieval.find_one(
{"bot_id": client.me.id}
)
if get_user and user_id in get_user.get("whitelist_user", []):
return await message.reply_text("USER ID NYA SUDAH ADA DI WHITELIST! GIMANA NARIK BOT KE GRUP LU?")
await db.antieval.update_one(
{"bot_id": client.me.id},
{"$addToSet": {"whitelist_user": user_id}},
upsert=True,
)
await message.reply_text(
"berhasil menambahkan user ke whitelist"
)
return
except Exception as e:
logging.error(f"Error adding user to whitelist: {e}")
await message.reply_text(
"GAGAL MENAMBAHKAN USER KE WHITELIST! CEK LAGI USER ID NYA!"
)
@bot.on_message(filters.command("delmoduser") & filters.group)
async def delwhitelist(client, message):
if message.from_user.id not in [6477856957]:
return await message.reply_text("LU SIAPA? GAK ADA IZIN GUE!")
if len(message.command) != 2:
return await message.reply_text("GAK ADA USER ID NYA? GIMANA NARIK BOT KE GRUP LU?")
user_id = int(message.command[1])
try:
get_user = await db.antieval.find_one(
{"bot_id": client.me.id}
)
if not get_user or user_id not in get_user.get("whitelist_user", []):
return await message.reply_text("GAK ADA USER ID NYA DI WHITELIST! GIMANA NARIK BOT KE GRUP LU?")
await db.antieval.update_one(
{"bot_id": client.me.id},
{"$pull": {"whitelist_user": user_id}},
upsert=True,
)
await message.reply_text(
"berhasil menghapus user dari whitelist"
)
return
except Exception as e:
logging.error(f"Error removing user from whitelist: {e}")
await message.reply_text(
"GAGAL MENGHAPUS USER DARI WHITELIST! CEK LAGI USER ID NYA!"
)
@bot.on_message(filters.command("addmodbot") & filters.group)
async def addwhitelistbot(client, message):
if message.from_user.id not in [6477856957]:
return await message.reply_text("LU SIAPA? GAK ADA IZIN GUE!")
if len(message.command) != 2:
return await message.reply_text("GAK ADA USER ID NYA? GIMANA NARIK BOT KE GRUP LU?")
user_id = int(message.command[1])
try:
get_user = await db.antieval.find_one(
{"bot_id": client.me.id}
)
if get_user and user_id in get_user.get("whitelist_bot", []):
return await message.reply_text("USER ID NYA SUDAH ADA DI WHITELIST! GIMANA NARIK BOT KE GRUP LU?")
await db.antieval.update_one(
{"bot_id": client.me.id},
{"$addToSet": {"whitelist_bot": user_id}},
upsert=True,
)
await message.reply_text(
"berhasil menambahkan bot ke whitelist"
)
return
except Exception as e:
logging.error(f"Error adding bot to whitelist: {e}")
await message.reply_text(
"GAGAL MENAMBAHKAN BOT KE WHITELIST! CEK LAGI USER ID NYA!"
)
@bot.on_message(filters.command("delmodbot") & filters.group)
async def delwhitelistbot(client, message):
if message.from_user.id not in [6477856957]:
return await message.reply_text("LU SIAPA? GAK ADA IZIN GUE!")
if len(message.command) != 2:
return await message.reply_text("GAK ADA USER ID NYA? GIMANA NARIK BOT KE GRUP LU?")
user_id = int(message.command[1])
try:
get_user = await db.antieval.find_one(
{"bot_id": client.me.id}
)
if not get_user or user_id not in get_user.get("whitelist_bot", []):
return await message.reply_text("GAK ADA USER ID NYA DI WHITELIST! GIMANA NARIK BOT KE GRUP LU?")
await db.antieval.update_one(
{"bot_id": client.me.id},
{"$pull": {"whitelist_bot": user_id}},
upsert=True,
)
await message.reply_text(
"berhasil menghapus bot dari whitelist"
)
return
except Exception as e:
logging.error(f"Error removing bot from whitelist: {e}")
await message.reply_text(
"GAGAL MENGHAPUS BOT DARI WHITELIST! CEK LAGI USER ID NYA!"
)
@bot.on_chat_member_updated(filters.group)
async def group_join(client, message):
try:
if message.new_chat_member and message.new_chat_member.user.id == client.me.id:
if message.chat.id in LEAVE_GROUP_LIST:
await client.leave_chat(message.chat.id)
await message.reply_text(
"GUA KELUAR DULU YA! LU TARIK BOT KE GRUP DEVELOPER YANG SUDAH DIBLACKLIST! π₯\n"
"GAK MALU APA TARIK BOT TAPI GAK TAU ATURAN?\n"
"INI BUKAN BOT PAJANGAN, INI BOT ANTI EVAL! π«π§ "
)
return
privileges = message.new_chat_member.privileges
if not privileges or not privileges.can_restrict_members or not privileges.can_delete_messages:
await client.send_message(
message.chat.id,
"GUA KELUAR DULU YA! LU NARIK BOT TAPI GAK KASIH IZIN BANNED! π₯\n"
"BIKIN BOT BUAT APA KALO CUMA JADI PAJANGAN?"
)
await client.leave_chat(message.chat.id)
logging.info(f"Left group: {message.chat.title} ({message.chat.id})")
return
await db.antieval.update_one(
{"bot_id": client.me.id},
{"$addToSet": {"chat_id": message.chat.id}},
upsert=True,
)
logging.info(f"Added to group: {message.chat.title} ({message.chat.id})")
except ChannelPrivate:
pass
@bot.on_message(filters.via_bot)
async def block_inline_via_bot(client, message):
if message.via_bot:
check = (await client.get_chat_member(message.chat.id, client.me.id)).privileges
if not check or not check.can_restrict_members or not check.can_delete_messages:
await message.reply_text(
"GUA KELUAR DULU YA! LU NARIK BOT TAPI GAK KASIH IZIN BANNED! π₯\n"
"BIKIN BOT BUAT APA KALO CUMA JADI PAJANGAN?"
)
await client.leave_chat(message.chat.id)
logging.info(f"Left group: {message.chat.title} ({message.chat.id})")
return
get_user_bot = await db.antieval.find_one(
{"bot_id": client.me.id}
)
if get_user_bot and message.via_bot.id in get_user_bot.get("whitelist_bot", []):
return
username = message.via_bot.username.lower()
if any(ok in username for ok in BLOCKED_INLINE_BOTS):
logging.info(f"Blocked inline via bot message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
if message.via_bot and "eval" in message.via_bot.username.lower():
logging.info(f"Blocked inline via bot message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
if contains_stylish_with_whitelist(message.text):
logging.info(f"contains_stylish_with_whitelist: Blocked inline message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
if has_code_entity(message):
logging.info(f"has_code_entity: Blocked inline message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
try:
if is_blocked_markdown_code(message.text.markdown or ""):
logging.info(f"is_blocked_markdown_code: Blocked message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
except AttributeError:
pass
if check_anti_word_by_ryzenth(message.text):
logging.info(f"check_anti_word_by_ryzenth: Blocked message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
@bot.on_message(
filters.group
& ~filters.command(["delmodbot", "addmodbot", "delmoduser", "addmoduser", "start"])
& ~filters.via_bot,
group=-1
)
async def markdown_code(client, message):
check = (await client.get_chat_member(message.chat.id, client.me.id)).privileges
if not check or not check.can_restrict_members or not check.can_delete_messages:
try:
await message.reply_text(
"GUA KELUAR DULU YA! LU NARIK BOT TAPI GAK KASIH IZIN BANNED! π₯\n"
"BIKIN BOT BUAT APA KALO CUMA JADI PAJANGAN?"
)
await client.leave_chat(message.chat.id)
logging.info(f"Left group: {message.chat.title} ({message.chat.id})")
return
except ChannelPrivate:
pass
get_user = await db.antieval.find_one(
{"bot_id": client.me.id}
)
if get_user and message.from_user.id in get_user.get("whitelist_user", []):
return
if contains_stylish_with_whitelist(message.text):
logging.info(f"contains_stylish_with_whitelist: Blocked message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
if has_code_entity(message):
logging.info(f"has_code_entity: Blocked message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
try:
if is_blocked_markdown_code(message.text.markdown or ""):
logging.info(f"is_blocked_markdown_code: Blocked message from {message.from_user.first_name} in {message.chat.title}")
warn = await db.warns.find_one({"chat_id": message.chat.id, "user_id": message.from_user.id})
if warn:
warn_count = warn.get("count", 0) + 1
await db.warns.update_one(
{"chat_id": message.chat.id, "user_id": message.from_user.id},
{"$set": {"count": warn_count}},
upsert=True
)
if warn_count >= 3:
await client.ban_chat_member(
message.chat.id,
message.from_user.id,
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Unban", callback_data=f"unban_{message.from_user.id}"
)
]
]
)
)
await message.reply_text(
f"π« User <code>{message.from_user.id}</code> telah dihapus setelah 3 kali peringatan."
)
await db.warns.delete_one({"chat_id": message.chat.id, "user_id": message.from_user.id})
else:
await db.warns.insert_one({"chat_id": message.chat.id, "user_id": message.from_user.id, "count": 1})
await message.reply_text(
f"β οΈ Peringatan pertama untuk <code>{message.from_user.id}</code>.",
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
"Unwarn", callback_data=f"unwarn_{message.from_user.id}"
)
]
]
)
)
await message.delete()
except AttributeError:
pass
if check_anti_word_by_ryzenth(message.text):
logging.info(f"check_anti_word_by_ryzenth: Blocked message from {message.from_user.first_name} in {message.chat.title}")
return await message.delete()
@bot.on_message(filters.regex(eval_regex) & filters.group)
async def block_userbot_eval(client, message):
check = (await client.get_chat_member(message.chat.id, client.me.id)).privileges
if not check or not check.can_restrict_members or not check.can_delete_messages:
await message.reply_text(
"GUA KELUAR DULU YA! LU NARIK BOT TAPI GAK KASIH IZIN BANNED! π₯\n"
"BIKIN BOT BUAT APA KALO CUMA JADI PAJANGAN?"
)
await client.leave_chat(message.chat.id)
logging.info(f"Left group: {message.chat.title} ({message.chat.id})")
return
get_user = await db.antieval.find_one(
{"bot_id": client.me.id}
)
if get_user and message.from_user.id in get_user.get("whitelist_user", []):
return
logging.info(f"Blocked userbot message from {message.from_user.first_name} in {message.chat.title}")
await message.delete()
async def main():
await db.connect()
await bot.start()
me_user = await bot.get_me()
me_user = me_user.first_name
logging.info(f"Info Bot: user {me_user} started!")
await idle()
if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.run_until_complete(main()) |