Popularity
0.9
Growing
Activity
0.0
Stable
25
2
3

Description

SimpleDDoS is a tiny Denial Of Service module with multi-threading support using cluster.

Programming language: JavaScript
Tags: Nodejs     Security     HTTP     Node     Ddos     Brute Force     Stress Testing    

๐Ÿ’€ SimpleDDoS alternatives and similar modules

Based on the "Security" category.
Alternatively, view ๐Ÿ’€ SimpleDDoS alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ๐Ÿ’€ SimpleDDoS or a related project?

Add another 'Security' Module

README

๐Ÿ’€ SimpleDDoS

Twitter David Top lang Vulnerabilities npm

Description

SimpleDDoS is a tiny Denial Of Service module with multi-threading support using cluster.

Author of the module is not responsible for any illegal actions. This module was written for testing purposes.

Known issues

  • Doesn't work on WSL with a high number of requests

Installation

# yarn
yarn global add simple-ddos
# npm
npm i -g simple-ddos

Usage

CLI

# Launches 10 threads of sending 100 requests every 1.5s
simple-ddos 10 http://localhost 100 1500

ddos(threadsCount, host, requestCount, interval)

The module launches a list of threads and sends a lot of requests to some host with some interval.

const ddos = require('simple-ddos')

// Launches 10 threads of sending 100 requests every 1.5s
ddos(10, 'http://localhost', 100, 1500)