import time
import random
bot_count = 10 # Number of attacking bots
requests_per_bot = 15 # Requests each bot sends
for bot in range(1, bot_count + 1):
for req in range(1, requests_per_bot + 1):
print(f"Bot #{bot} sending Request #{req}")
time.sleep(random.uniform(0.01, 0.05)) # Random delay between attacks
print("🔥 DDoS Attack Simulation Complete! 🔥")