PHPackages                             noobsec/antiscanscanclub-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Security](/categories/security)
4. /
5. noobsec/antiscanscanclub-laravel

ActiveLibrary[Security](/categories/security)

noobsec/antiscanscanclub-laravel
================================

A Laravel Package to Block Automated Scanners from Scanning your Site

v2.0.3(6y ago)218811MITPHPCI failing

Since Oct 15Pushed 3y ago3 watchersCompare

[ Source](https://github.com/noobsec/AntiScanScanClub-laravel)[ Packagist](https://packagist.org/packages/noobsec/antiscanscanclub-laravel)[ Docs](https://github.com/noobsec/AntiScanScanClub-laravel)[ RSS](/packages/noobsec-antiscanscanclub-laravel/feed)WikiDiscussions master Synced yesterday

READMEChangelog (8)Dependencies (5)Versions (8)Used By (0)

AntiScanScanClub
================

[](#antiscanscanclub)

[![GitHub (pre-)release](https://camo.githubusercontent.com/09598bd13f681169dbfdd8c952436d1f5fceb67e3f9c123eec110c82488cd778/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6e6f6f627365632f416e74695363616e5363616e436c75622d6c61726176656c2f616c6c2e737667)](https://github.com/noobsec/AntiScanScanClub-laravel/releases)[![Built for Laravel](https://camo.githubusercontent.com/ddd4a07bb769306a9338cffde2032c289e4d43d43ac346122709465a47cdff3f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275696c745f666f722d4c61726176656c2d677265656e2e737667)](https://laravel.com/)[![Build Status](https://camo.githubusercontent.com/c3a1f3444ba08b85d378f23f3b75bded154fe5a2f6ac39a0ab1f6fe999d59c03/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6e6f6f627365632f416e74695363616e5363616e436c75622d6c61726176656c2f6d61737465722e737667)](https://travis-ci.org/noobsec/AntiScanScanClub-laravel)[![Total Downloads](https://camo.githubusercontent.com/1878100c2a2d8298556b1032126011695707b59e78f1ae061a2561e179c289a5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f6f627365632f616e74697363616e7363616e636c75622d6c61726176656c2e737667)](https://packagist.org/packages/noobsec/antiscanscanclub-laravel)[![LICENSE](https://camo.githubusercontent.com/850eae1099d2b05f53383473d7cd51f9bc1ab09b7d0d9e5122f1dd930efdcc6d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6d6173686170652f6170697374617475732e737667)](LICENSE)[![GitHub issues](https://camo.githubusercontent.com/21d911257378974cc6e0ce343c39b8895e95198d0d19371d36d5e939f300febe/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6e6f6f627365632f416e74695363616e5363616e436c75622d6c61726176656c2e737667)](https://github.com/noobsec/AntiScanScanClub-laravel/issues)[![GitHub closed pull requests](https://camo.githubusercontent.com/616e9b0f384f76b083e1d9789a004d5ee8ca0f3565de208ca8aab7f2aaa909ec/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722d636c6f7365642f6e6f6f627365632f416e74695363616e5363616e436c75622d6c61726176656c2e737667)](../../pulls?q=is%3Apr+is%3Aclosed)[![Contributions Welcome](https://camo.githubusercontent.com/382079383bf5ec051cfa878df7b3d9a70a5f5052e573c67033d4d3f7e376a6d4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f6e747269627574696f6e732d77656c636f6d652d627269676874677265656e2e737667)](https://github.com/noobsec/AntiScanScanClub-laravel/issues)

A Laravel Package to Block Automated Scanners from Scanning your Site.

[![how_antiscanscanclub_work](https://user-images.githubusercontent.com/25837540/47261277-ae3b5480-d4f5-11e8-8055-aaf090f198c4.png)](https://user-images.githubusercontent.com/25837540/47261277-ae3b5480-d4f5-11e8-8055-aaf090f198c4.png)

---

- [Installation](#installation)
- [Configuration](#configuration)
- [Usage](#usage)
- [Changelog](#changelog)
- [Contributing](#contributing)
- [Security](#security)
- [Credits](#credits)
- [License](#license)
- [Version](#version)

---

Installation
------------

[](#installation)

```
$ composer require noobsec/antiscanscanclub-laravel
```

- Please keep up-to-date this package to latest commit

```
$ composer require noobsec/antiscanscanclub-laravel:dev-master
```

Laravel 5+
----------

[](#laravel-5)

### Setup

[](#setup)

1. Publish the config file

```
php artisan vendor:publish --provider="noobsec\AntiScanScanClub\AntiScanScanClubServiceProvider"

```

2. Create middleware

```
$ php artisan make:middleware AntiScanScanMiddleware
```

Configuration
-------------

[](#configuration)

1. Add `ASSC_LIST` in **.env** file:

***NOTE: Blacklists file will be stored in `storage/app/` path***

```
ASSC_LIST="blacklists.json"

```

2. Edit the *AntiScanScanMiddleware* file *(app/Http/Middleware/AntiScanScanMiddleware.php)*, approx like this:

```
