Skip to content

TRicKST-R/ddos-defender

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

var Ddos = require('ddos-defender')
var express = require('express')
var ddos = new Ddos({burst:10, limit:15})
var app = express();
app.use(ddos.express);
  • Rule 1 Every request per user increments an internal count. When the count exceeds the limit, the requests are denied with a HTTP 429 Too Many Requests.

  • Rule 2 The only way for count to go away, is for an internal expiration time to expire, called the expiry, and is measured in seconds.

The first request comes in and the expiry is set to 1 second. If 1 second passes and no additional requests are made, then the entry is removed from the internal table. In fact, there can be up to burst amount of requests made and the expiry time will not change. The only way the expiry goes up is when a request comes, the count goes up, and then if the count exceeds the burst amount (greater than, not greater than or equal to), then the expiry goes up to twice its previous value.

Every time the table is checked (defaults to 1 second, configurable by the checkinterval setting), the expiry goes down by that amount of time. Now we loop back to Rule 2 when that when expiry is less than or equal to 0, then that entry is removed along with the count.

Supports

* HapiJS
* Express 4+
* Koa, or
* Any middleware stack that supports *next*
  e.g. fn (req,res,next)

With Express

var Ddos = require('ddos-defender')
var express = require('express')
var ddos = new Ddos;
var app = express();
app.use(ddos.express)

With HapiJS

var Ddos = require('ddos-defender')
var Hapi = require('hapi');

var ddos = new Ddos;
const server = new Hapi.Server();
server.ext('onRequest', ddos.hapi.bind(ddos));

With Koa

var Ddos = require('ddos-defender')
var koa = require('koa')
var ddos = new Ddos;

var app = new koa;
app.use(ddos.koa().bind(ddos)) // be sure to bind ddos as koa rebinds the context
var Router = require('router-middleware');
var Ddos = require('ddos-defender')

var ddos = new Ddos;
var app = Router();
app.use(ddos);

How does this ddos prevention module work?

Every request marks the internal table and increments the count. This is how an entry in the table managed by this module looks

{ host : <ip address>, count: 1, expiry: 1 }

When a second request is made

{ host : <ip address>, count: 2, expiry: 1 }

and the third

{ host : <ip address>, count: 3, expiry: 1 }

and so on. If the count exceeds the configurable burst amount, then the expiry goes up by twice the previous expiry, 1, 2, 4, 8, 16, etc.

When count exceeds the limit, then the request is denied, otherwise, the request is permitted.

Every time the internal table is checked, the expiration goes down by the time elapsed.

The only way for a user who has denied requests to continue is for them to let the expiration time pass, and when expiration hits 0, the entry is deleted from the table, and new requests are allowed like normal.

Processing and Memory Usage by this module

There is only ONE table, and within it only one small entry per IP, and that entry is transient and will be deleted within normal parameters. The table itself is combed over at the configurable checkinterval in seconds.

Yes, this will not deal with distributed denial-of-service attacks

But it will deal with simple DOS ones, but the concept is associated with DDOS whereas DOS is about the classic operating system from the 90's.

Let's review Configuration

To override any configuration option, simply specify it at construction time.

var Ddos = require('ddos');
var ddos = new Ddos({burst:3,limit:4,testmode:true,whitelist:['74.125.224.72']});

Let's go over the configuration options to help illustrate how this module works. All of the configurations default to the following:

params.maxcount = 30;
params.burst = 5;
params.limit = _params.burst * 4;
params.maxexpiry = 120;
params.checkinterval = 1;
params.trustProxy = true;
params.includeUserAgent = true;
params.whitelist = [];
params.errormessage = 'Error';
params.testmode = false;
params.silent = false;
params.silentStart = false;
params.responseStatus = 429;

limit

limit is the number of maximum counts allowed (do not confuse that with maxcount). count increments with each request. If the count exceeds the limit, then the request is denied. Recommended limit is to use a multiple of the number of bursts.

maxcount

When the count exceeds the limit and then the maxcount, the count is reduced to the maxcount. The maxcount is simply is the maximum amount of "punishment" that could be applied to a denial time-out.

burst

Burst is the number or amount of allowable burst requests before the client starts being penalized. When the client is penalized, the expiration is increased by twice the previous expiration.

maxexpiry

maxexpiry is the seconds of maximum amount of expiration time. In order for the user to use whatever service you are providing again, they have to wait through the expiration time.

checkinterval

checkinterval is the seconds between updating the internal table.

trustProxy

Defaults to true. If true then we use the x-forwarded-for header, otherwise we use the remote address.

var host = _params.trustProxy ? (req.headers['x-forwarded-for'] || req.connection.remoteAddress) : req.connection.remoteAddress

includeUserAgent

Defaults to true. If true we include the user agent as part of identifying a unique user. If false, then we only use IP. If set to false this can lead to an entire block being banned unintentionally. Included to leave it up to the developer how they want to use it.

whitelist

Defaults to empty list. Specify the IP's or addresses you would like to whitelist

var Ddos = require('ddos');
var ddos = new Ddos({whitelist:['74.125.224.72', '216.239.63.255']});

Whitelisted IP's bypass all table checks. If the address in question is in IPV6 form, simply enable testmode

var ddos = new Ddos({whitelist:['74.125.224.72', '216.239.63.255'], testmode:true});

and see the exact form of the address you want to whitelist. See this link on stackoverflow about IPv6 addresses

errormessage

When a request is denied, the user receives a 429 and the error message.

responseStatus

By default HTTP status code 429 (Too Many Requests) are sent in response.

LICENSE

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published