mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-15 04:05:29 +00:00
Update ddos.py
This commit is contained in:
parent
005cdfb0b5
commit
1ea3c3b168
@ -5,6 +5,29 @@ import subprocess
|
|||||||
from core import HackingTool
|
from core import HackingTool
|
||||||
from core import HackingToolsCollection
|
from core import HackingToolsCollection
|
||||||
|
|
||||||
|
class ddos(HackingTool):
|
||||||
|
TITLE ="ddos"
|
||||||
|
DESCRIPTION = "Best DDoS Attack Script With 36 Plus Methods." \
|
||||||
|
"DDoS attacks\n\b " \
|
||||||
|
"for SECURITY TESTING PURPOSES ONLY! "
|
||||||
|
|
||||||
|
INSTALL_COMMANDS = [
|
||||||
|
"git clone https://github.com/the-deepnet/ddos.git",
|
||||||
|
"cd ddos;sudo pip3 install -r requirements.txt"
|
||||||
|
]
|
||||||
|
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;")
|
||||||
|
subprocess.run([
|
||||||
|
"sudo", "python3 ddos", method, url, socks_type5.4.1, threads, proxylist, multiple, timer])
|
||||||
|
|
||||||
|
|
||||||
class SlowLoris(HackingTool):
|
class SlowLoris(HackingTool):
|
||||||
TITLE = "SlowLoris"
|
TITLE = "SlowLoris"
|
||||||
|
Loading…
Reference in New Issue
Block a user