dcyilmaz/file-monitor

You know if your project has been hacked by checking your files.

v1.0.8 2024-07-09 01:24 UTC

This package is auto-updated.

Last update: 2024-11-09 02:51:31 UTC


README

Total Downloads

File Monitor is a Laravel package that allows you to monitor file changes within your application. It helps in keeping track of modifications, creations of files.

Installation

You can install the package via Composer:

Install package

composer require dcyilmaz/file-monitor

Register provider in bootstrap/providers.php

Dcyilmaz\FileMonitor\FileMonitorServiceProvider::class,

Install file_records table

php artisan migrate

Scan all files

php artisan file-monitor:check --init

You should see this kind of writing.

image

You can then scan and check your files at any time with this command

php artisan file-monitor:check

This is how you can see your scan results

image image