close
The Wayback Machine - https://web.archive.org/web/20220813132830/https://github.com/Z4nzu/hackingtool/commit/0a4faeac9c4f93a61c937b0e57023b693beeca6f
Skip to content
Permalink
Browse files
Merge pull request #161 from muneebwanee/patch-2
Update ddos.py
  • Loading branch information
Z4nzu committed Jan 8, 2022
2 parents ad24a5b + 1ea3c3b commit 0a4faeac9c4f93a61c937b0e57023b693beeca6f
Showing 1 changed file with 23 additions and 0 deletions.
@@ -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"

2 comments on commit 0a4faea

@ZoZomk6
Copy link

@ZoZomk6 ZoZomk6 commented on 0a4faea Jan 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cd ddos;sudo pip3 install -r requirements.txt 128 ⨯
[sudo] password for kali:
sudo: pip3: command not found
why is it telling me that?

@Daelni
Copy link

@Daelni Daelni commented on 0a4faea Jan 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

porque pip3 es un comando que se tiene que descargar aparte

Please sign in to comment.