Skip to content

NullifiedCode/DDoS-Protection-V2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DDoS Protection Example

This is my DDoS Protection against Layer 7 using my own knowledge. Which stops some DDoS attacks. But can also stop massive ones to a certain point :)

Why?

I made this to mainly help myself and reduce DDoS attacks on my website (https://nulls.sbs). BUT found that It is really useful and wanna share with everyone :)

Information

There is going to be a few options to adjust to make it suit best for your VPS or dedicated server. They are located and look like.

image

infractionsMax can be changed. That is the amount of times someone can refresh really fast before it blacklists them.
seconds can also be changed. This is the time needed to wait before they can refresh and get the page again.

So. How this works is that it compares the first connect and the new connection time (If they refresh or close the tab and open again) against each other.

All ips that are blacklisted are saved into a file called ddos-filtered.cache its located right next to the app.js file. Feel free to change this to anywhere you want it to be.

How effective is it?.

Well, Being honest its super effective to a certain point. When experiencing a DDoS Attack you want the legimate traffic to come through still. So I made a different approach using Javascript. Located inside the index.html you will find a script that is asking for a prompt before closing the page which helps to detect Malicious traffic. Most DDoS tools or Botnets dont listen to Javascript meaning they send the request over and over and over really fast to the point of butchering the CPU and RAM of the VPS. And since legimate traffic or legitimate users wont be able to click leave on the popup really fast it allows the seconds to be changed to suit best for you.

Reminder

You have to change seconds and infractionsMax to suit your VPS. Otherwise it will blacklist people randomly. You have to find the good spot.