newelement / laravel-block-bots
There is no license information available for the latest version (0.1.2) of this package.
Block bots and high traffic offenders using Redis
0.1.2
2025-04-09 01:52 UTC
Requires
- php: ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4
- ext-json: *
- guzzlehttp/guzzle: ^7.9.0
- laravel/framework: ^9.0|^10.0|^11.0|^12.0
- predis/predis: ^2.3
Requires (Dev)
- orchestra/testbench: ^10.0
- phpunit/phpunit: ^11.0
This package is auto-updated.
Last update: 2025-05-09 02:20:49 UTC
README
Introduction
Laravel Block Bots is a package that blocks bad crawlers, people trying to scrape your website or high-usage users, but lets good and important crawlers such as GoogleBot and Bing pass-through.
Features
- ULTRA fast, less than 1ms increase in each request.
- Verify Crawlers using reverse DNS
- Highly configurable
- Redirect users to a page when they get blocked
- Allow logged-in users to always bypass blocks
Install
Via Composer
composer require newelement/laravel-block-bots
Requirement
- This package relies heavily on Redis. To use it, make sure that Redis is configured and ready. (see Laravel Redis Configuration)
Config
To adjust the library, you can publish the config file to your project using:
php artisan vendor:publish --provider="Newelement\LaravelBlockBots\BlockBotsServiceProvider"
Configure variables in your .env file:
BLOCK_BOTS_ENABLED=true
BLOCK_BOTS_MODE=production
#options: `production` (like a charm), `never` (bypass every route), `always` (blocks every routes)
BLOCK_BOTS_USE_DEFAULT_ALLOWED_BOTS=true
BLOCK_BOTS_WHITELIST_KEY=block_bot:whitelist
BLOCK_BOTS_FAKE_BOTS_KEY=block_bot:fake_bots
BLOCK_BOTS_PENDING_BOTS_KEY=block_bot:pending_bots
BLOCK_BOTS_LOG_ENABLED=true
Usage
It's simple. Go to Kernel.php
and add to the $routeMiddleware
block as :
protected $routeMiddleware = [
...
'block' => \Newelement\LaravelBlockBots\Middleware\BlockBots::class,
];
Than you can put in the desired groups. For example, let's set to the Web group:
protected $middlewareGroups = [
'web' => [
...
\App\Http\Middleware\VerifyCsrfToken::class,
'block:100,daily', // 100 requests per day.
],
Where:
- 100: is the number of pages an IP can access every day
- daily: is the time period. Options:
hourly
,daily
,weekly
,monthly
,annually
Credits
Original package by Potelo
License
The MIT License (MIT). Please see License File for more information.