DEV Community

Mahmoud Ahmed
Mahmoud Ahmed

Posted on

1

LaraSecure - IP Blocker

IP Blocker

Scrutinizer Code Quality
Code Intelligence Status

A Laravel Package to increase the security of your websites by preventing access for users having blocked IP Addresses.

However, you can add IP Addresses as many as you want into table called ipblockers which you want to disallow access to your site from spam etc.

Installation

composer require larasecure/ip-blocker --dev

Then publish the config

php artisan vendor:publish --tag=ipblocker
php artisan migrate

Usage

Add this middleware in Kernel.php $routeMiddleware to restrict IP Addresses

'IPBlocking' => \Larasecure\IPBlocker\Middlewares\IPBlocking::class

Add IPBlocking middleware to route group for which you want to restrict access.

  Route::group(['middleware' => 'IPBlocking'], function(){
    // you routes..
  });

or you can injected in RouteServiceProvider.php

  protected function mapApiRoutes()
    {
        Route::prefix('api')
            ->middleware(['api', 'IPBlocking'])
            ->namespace($this->namespace)
            ->group(base_path('routes/api.php'));
    }

or just add middleware to single route

  Route::get('/', function () {
    //
  })->middleware('IPBlocking');

Users will be redirect to "403 | Forbidden" page if their IP exist on ipblockers table.

Security

If you discover any security related issues, please email mahmoud.italy@outlook.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Hostinger image

Get n8n VPS hosting 3x cheaper than a cloud solution

Get fast, easy, secure n8n VPS hosting from $4.99/mo at Hostinger. Automate any workflow using a pre-installed n8n application and no-code customization.

Start now

Top comments (0)

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.

Read full post

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay