PHPackages                             seanhayes-com/laravel-probe-detection - 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. seanhayes-com/laravel-probe-detection

ActiveLibrary[Security](/categories/security)

seanhayes-com/laravel-probe-detection
=====================================

A Laravel package to log known website probing attacks.

0.3(6y ago)04MITPHPPHP ^7.2CI failing

Since Feb 15Pushed 6y ago1 watchersCompare

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

READMEChangelog (3)Dependencies (6)Versions (6)Used By (0)

Laravel Probe Detection
=======================

[](#laravel-probe-detection)

Log and ban known website probing attacks and eliminate wasted site resources

Minimum Requirements
--------------------

[](#minimum-requirements)

Laravel 6.0 and PHP 7.2

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

[](#installation)

You can install the package via composer:

```
composer require seanhayes-com/laravel-probe-detection
```

The package will automatically register itself.

You can publish the migration with:

```
php artisan vendor:publish --provider="SeanHayes\Probe\ProbeServiceProvider" --tag="migrations"
```

After the migration has been published you can create the `prob_log` table by running the migrations:

```
php artisan migrate
```

You can optionally publish the config file with:

```
php artisan vendor:publish --provider="SeanHayes\Probe\ProbeServiceProvider" --tag="config"
```

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

[](#configuration)

Change settings in config/probe.php

Add routes to handle certain common attack vectors or URIs added to watch\_uris in config/probe.php

```
Route::get('/wp-login.php', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::get('/{name}/wp-login.php', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::get('/wp-admin/', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::get('/wp-content/', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::get('/{name}/wp-admin/', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::get('/xmlrpc.php', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::get('/wp-cron.php', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::post('/wp-login.php', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::post('/{name}/wp-login.php', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::post('/wp-admin/', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::post('/{name}/wp-admin/', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::post('/xmlrpc.php', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
Route::post('/wp-cron.php', function () {
	\SeanHayes\Probe\Probe::logRequest();
});
```

Usage
-----

[](#usage)

Include the path in your Controller or AppServiceProvider

```
use SeanHayes\Probe\Probe;
```

And the call to process the request in your method

```
Probe::logRequest();
```

Troubleshooting
---------------

[](#troubleshooting)

If you experience file cache errors, you can change your CACHE\_DRIVER to array in your .env file.

```
CACHE_DRIVER=array
```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 91.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

5

Last Release

2277d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13557329?v=4)[Sean Hayes](/maintainers/seanhayes-com)[@seanhayes-com](https://github.com/seanhayes-com)

---

Top Contributors

[![metal-software](https://avatars.githubusercontent.com/u/7258121?v=4)](https://github.com/metal-software "metal-software (22 commits)")[![seanhayes-com](https://avatars.githubusercontent.com/u/13557329?v=4)](https://github.com/seanhayes-com "seanhayes-com (2 commits)")

---

Tags

laravelsecuritywebsiteprobeseanhayes

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/seanhayes-com-laravel-probe-detection/health.svg)

```
[![Health](https://phpackages.com/badges/seanhayes-com-laravel-probe-detection/health.svg)](https://phpackages.com/packages/seanhayes-com-laravel-probe-detection)
```

###  Alternatives

[akaunting/laravel-firewall

Web Application Firewall (WAF) package for Laravel

999465.8k2](/packages/akaunting-laravel-firewall)[enlightn/laravel-security-checker

A Laravel package to scan your dependencies for known security vulnerabilities.

51173.4k](/packages/enlightn-laravel-security-checker)[glaivepro/hidevara

Laravel millipackage that hides variables from getting dumped in the Whoops page when your app crashes.

27303.9k](/packages/glaivepro-hidevara)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
