Skip to content

Commit

Permalink
Merge pull request Z4nzu#161 from muneebwanee/patch-2
Browse files Browse the repository at this point in the history
Update ddos.py
  • Loading branch information
Z4nzu authored Jan 8, 2022
2 parents ad24a5b + 1ea3c3b commit 0a4faea
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tools/ddos.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@
from core import HackingTool
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):
TITLE = "SlowLoris"
Expand Down

0 comments on commit 0a4faea

Please sign in to comment.