Description
SimpleDDoS is a tiny Denial Of Service module with multi-threading support using cluster.
๐ SimpleDDoS alternatives and similar modules
Based on the "Security" category.
Alternatively, view ๐ SimpleDDoS alternatives based on common mentions on social networks and blogs.
-
snyk
DISCONTINUED. Snyk CLI scans and monitors your projects for security vulnerabilities. [Moved to: https://github.com/snyk/cli] -
is-website-vulnerable
finds publicly known security vulnerabilities in a website's frontend JavaScript libraries -
Themis by Cossack Labs
Easy to use cryptographic framework for data protection: secure messaging with forward secrecy and secure data storage. Has unified APIs across 14 platforms. -
jose-simple
Jose-Simple allows the encryption and decryption of data using the JOSE (JSON Object Signing and Encryption) standard.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ๐ SimpleDDoS or a related project?
README
๐ SimpleDDoS
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)