Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cleantalk/anti-ddos-lite

Anti-DDoS-Lite (Anti-Crawler app) is a small PHP app to protect your site against DDoS attack.
https://github.com/cleantalk/anti-ddos-lite

bot ddos ddos-attacks ddos-mitigation ddos-protection human-verification javascript php verification

Last synced: 1 day ago
JSON representation

Anti-DDoS-Lite (Anti-Crawler app) is a small PHP app to protect your site against DDoS attack.

Awesome Lists containing this project

README

        

# DDoS-Protection-Lite

[![Build Status](https://travis-ci.com/CleanTalk/anti-ddos-lite.svg?branch=master)](https://travis-ci.org/CleanTalk/anti-ddos-lite)

Anti-DDoS-Lite (Anti-Crawler app) is a PHP app to protect your site against DDoS attack or crawling web site by bots.

## Description
Anti-DDoS-Lite helps block bots and reduce server load and stops bad bots before they can reach your original web page. During the opening of the site page, the application performs a JS check and if the check fails, then a blocking page will be displayed.

Most of bots can't execute JavaScript code or can execute code partially. This app filters traffic from bots by using simple JavaScript code. Bots are denied to read original pages, they get only a single stop-page. As a result DDoS attack is reduced by elimination of bots traffic that participating in the DDoS attack.

In the same time, legitimate/real visitors get the original page after a short delay because the browser of legitimate/real visitors executes JavaScript code. The legitimate/real visitors see the stop-page only once, during first visit to the site.

## How to use

1. Include the app as first line in index.php by various way:

**A** Download, unzip and include the app:
```php

```

**B** Or install the app by composer package:

```
composer require cleantalk/anti-ddos-lite
```
```php