hryagstn/laravel-scalpel

Filesystem intrusion evidence scanner for Laravel applications

Maintainers

Package info

github.com/hryagstn/laravel-scalpel

pkg:composer/hryagstn/laravel-scalpel

Transparency log

Statistics

Installs: 141

Dependents: 0

Suggesters: 0

Stars: 25

Open Issues: 0

v1.5.2 2026-07-12 08:32 UTC

README

Laravel Scalpel Logo

Laravel Scalpel

Intrusion Evidence Scanner for Laravel

Build Status Latest Version on Packagist PHP Version Laravel Version Website License

A zero-dependency, filesystem-level forensic scanner that detects signs of compromise in your Laravel application โ€” obfuscated backdoors, rogue PHP files, tampered .htaccess directives, missing .env files, and unexpected filesystem changes.

Interactive landing page and simulator: hryagstn.github.io/laravel-scalpel

๐Ÿšจ The Problem

It often starts the same way: a production Laravel app is quietly compromised. Obfuscated PHP backdoors appear in directories like public/icons/ or storage/. An .htaccess file is modified to allow Python script execution. The .env file is deleted or tampered with to disable error reporting and cover tracks.

These attacks don't trigger your WAF. They don't show up in your application logs. The malicious files sit silently on disk, waiting.

Laravel Scalpel is not a WAF, firewall, or runtime protection layer. It is a forensic filesystem scanner โ€” a post-incident or preventive tool that examines your project's file structure and contents for evidence of intrusion. Think of it as a security audit you can run on-demand or in CI/CD.

Unlike configuration auditors that check for potential vulnerabilities, Laravel Scalpel looks for evidence that a compromise has already occurred โ€” making it the tool you reach for when something feels wrong, not just as a preventive checklist.

๐Ÿ“ฆ Installation

composer require hryagstn/laravel-scalpel

Publish the configuration file:

php artisan vendor:publish --tag=scalpel-config

This creates config/scalpel.php where you can customize scan behavior, exclusion lists, and severity thresholds.

Requirements: PHP 8.1+ ยท Laravel 10.x, 11.x, 12.x, or 13.x

โšก Quick Start

Run all scanners at once:

php artisan scalpel:scan

Create a filesystem baseline snapshot:

php artisan scalpel:baseline

Compare current state against the baseline:

php artisan scalpel:diff

That's it. Three commands to audit your entire project for intrusion evidence.

Important: Always run vendor:publish and complete your initial setup before running scalpel:baseline. The baseline should capture your application's known-good state after all configuration is in place.

๐Ÿ“– Command Reference

scalpel:scan

Run one or more scanners against your project.

# Run all scanners
php artisan scalpel:scan

# Run specific scanners only
php artisan scalpel:scan --only=structural,obfuscated

# Output results as JSON (for machine consumption)
php artisan scalpel:scan --format=json

Options:

Option Description
--only Comma-separated list of scanners to run: structural, obfuscated, htaccess, env
--format Output format: table (default) or json
--fast Enable metadata-based fast scan (Deferred Hashing) for this execution.

Exit codes:

Code Meaning
0 No findings (clean)
1 Findings detected (CRITICAL or HIGH)
2 Findings detected (MEDIUM or LOW only)

scalpel:baseline

Create a snapshot of your project's current filesystem state. This snapshot is stored at the path configured in scalpel.baseline_path (default: storage/app/private/scalpel/baseline.json).

# Create a baseline (fails if one already exists)
php artisan scalpel:baseline

# Overwrite an existing baseline
php artisan scalpel:baseline --force

Options:

Option Description
--force Overwrite an existing baseline file
--fast Enable metadata-based fast scan (Deferred Hashing) for this execution.

scalpel:diff

Compare the current filesystem state against a previously created baseline snapshot. Reports added, removed, and modified files.

# Compare against baseline
php artisan scalpel:diff

# Output diff as JSON
php artisan scalpel:diff --format=json

Options:

Option Description
--format Output format: table (default) or json
--fast Enable metadata-based fast scan (Deferred Hashing) for this execution.

Exit codes: Same as scalpel:scan.

๐Ÿ” How It Works

Laravel Scalpel ships with five independent scanners. Each focuses on a specific class of intrusion evidence.

Structural Anomaly Scanner

Detects PHP files in directories where they should never exist โ€” public/, storage/, bootstrap/cache/, and any other paths you define as "non-PHP zones."

Attackers commonly drop webshells into public-facing directories disguised as image folders (e.g., public/icons/shell.php). This scanner catches them.

  • Scans all configured non_php_zones for .php files
  • Automatically excludes known legitimate files (public/index.php) and directories (public/vendor/)
  • Configurable allow-lists for both files and directories

Obfuscated Code Scanner

Detects common PHP obfuscation patterns used in backdoors and webshells. Scans all .php files in the project for:

Pattern Description Severity
eval(base64_decode) Classic obfuscation โ€” decode and execute CRITICAL
eval(gzinflate) Compressed payload execution CRITICAL
eval(str_rot13) ROT13 obfuscation with eval CRITICAL
eval(gzuncompress) Compressed payload execution (variant) CRITICAL
eval(gzdecode) Compressed payload execution (variant) CRITICAL
assert() with vars Dynamic code execution via assert HIGH
Variable functions $var() style dynamic function calls MEDIUM
preg_replace /e Code execution via deprecated regex modifier HIGH
Long encoded strings Suspiciously long base64/hex strings (โ‰ฅ500 chars) MEDIUM

Each pattern can be individually toggled in the configuration.

Htaccess Scanner

Scans all .htaccess files in your project for dangerous directives that could allow execution of non-PHP scripts. Attackers often modify .htaccess to register Python, Perl, or CGI handlers, enabling them to run arbitrary scripts through the web server.

Detects:

  • AddHandler directives mapping to dangerous script types
  • AddType directives mapping to dangerous MIME types
  • Custom handler registrations for cgi-script, python-program, perl-script, etc.

Baseline Diff Scanner

Creates a cryptographic snapshot of your entire project filesystem and detects changes over time. This is your "known good state" mechanism.

Workflow:

  1. Run php artisan scalpel:baseline after a clean deployment
  2. Run php artisan scalpel:diff periodically or in CI to detect unauthorized changes
  3. Added, removed, or modified files are reported with severity ratings

Baseline snapshots exclude volatile directories like storage/logs/, storage/framework/cache/, and other paths configured in baseline_excluded_paths.

Env Integrity Scanner

Verifies the existence and basic integrity of your .env file. Attackers sometimes delete or truncate the .env file to disable error reporting, remove debug information, or reset application keys.

Checks:

  • .env file exists
  • .env file is not empty
  • .env file is readable

โš™๏ธ Configuration Reference

After publishing, the configuration file lives at config/scalpel.php. Below is a reference for every key.

non_php_zones

Directories where PHP files should not exist. Relative to the project root.

'non_php_zones' => [
    'public',
    'storage',
    'bootstrap/cache',
],

structural_allowed_files

Individual files within non-PHP zones that are known to be legitimate. Relative to the project root.

'structural_allowed_files' => [
    'public/index.php',
],

structural_allowed_directories

Subdirectories within non-PHP zones where PHP files are expected (e.g., published assets).

'structural_allowed_directories' => [
    'public/vendor',
],

excluded_paths

Paths to exclude from all scanners. Relative to the project root.

'excluded_paths' => [
    'vendor',
    'node_modules',
    '.git',
],

obfuscation_patterns

Toggle individual obfuscation detection patterns on or off.

'obfuscation_patterns' => [
    'eval_base64_decode'  => true,
    'eval_gzinflate'      => true,
    'eval_str_rot13'      => true,
    'eval_gzuncompress'   => true,
    'eval_gzdecode'       => true,
    'assert_dynamic'      => true,
    'variable_functions'  => true,
    'preg_replace_e'      => true,
    'long_encoded_string' => true,
],

long_string_threshold

Minimum character length for a string to be flagged as a suspiciously long encoded payload.

'long_string_threshold' => 500,

htaccess_dangerous_handlers

Script handlers and MIME types that are flagged when found in .htaccess directives.

'htaccess_dangerous_handlers' => [
    'cgi-script',
    'python-program',
    'perl-script',
    'ruby-script',
    'application/x-httpd-python',
    'application/x-httpd-perl',
    'application/x-httpd-ruby',
    'application/x-httpd-cgi',
],

baseline_excluded_paths

Additional paths excluded from baseline snapshots and diff comparisons (on top of excluded_paths).

'baseline_excluded_paths' => [
    'storage/logs',
    'storage/framework/cache',
    'storage/framework/sessions',
    'storage/framework/views',
    'storage/app/private/scalpel',
],

baseline_path

Where the baseline snapshot JSON file is stored, relative to storage/app/private/ (or storage/app/ depending on your local disk configuration).

'baseline_path' => 'scalpel/baseline.json',

severity_threshold

Minimum severity level to include in results. Findings below this level are silently filtered out. Options: CRITICAL, HIGH, MEDIUM, LOW.

'severity_threshold' => 'LOW',

๐Ÿ”„ CI/CD Integration

Laravel Scalpel uses exit codes to signal results, making it straightforward to integrate into CI/CD pipelines.

GitHub Actions Example

name: Security Scan

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]
  schedule:
    - cron: '0 6 * * *'  # Daily at 6 AM UTC

jobs:
  scalpel-scan:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Setup PHP
        uses: shivammathur/setup-php@v2
        with:
          php-version: '8.2'

      - name: Install Dependencies
        run: composer install --no-interaction --prefer-dist

      - name: Run Scalpel Scan
        run: php artisan scalpel:scan --format=json

      - name: Run Baseline Diff
        run: php artisan scalpel:diff --format=json

Tip: Store a baseline snapshot in your repository (or generate it during deployment) so scalpel:diff can detect unauthorized post-deployment changes.

Known False Positives

bootstrap/cache/ files modified or deleted These files are regenerated by Laravel when running php artisan optimize or php artisan optimize:clear. If you see changes here after running these commands, it is expected. If you see changes without having run these commands, investigate immediately.

Recommended Workflow

  1. Deploy new code
  2. Run php artisan optimize
  3. Run php artisan scalpel:baseline --force

This ensures the baseline always reflects the post-deployment known-good state.

Automation & Monitoring

Pair Laravel Scalpel with n8n-bastion for automated scheduled scanning and real-time Telegram alerts when CRITICAL or HIGH findings are detected on your VPS.

๐Ÿ›ก๏ธ Security Model & Limitations

Trust Boundary & Process Space

Laravel Scalpel is designed as a detection layer, not a containment layer. Because it runs as a PHP Artisan command within your application's environment:

  • It runs with the same operating system user and permissions as your web server/PHP process.
  • It shares the same memory space and filesystem access.
  • It operates within the same trust boundary as the application code it is inspecting.

What This Means in Practice

If an attacker achieves arbitrary code execution with the ability to write to the filesystem:

  • They could theoretically modify the Laravel Scalpel source files or configuration to suppress scan results.
  • They could intercept or delete logs before they are reported.
  • They could tamper with the generated JSON reports to hide signs of intrusion.

This is an inherent limitation of any in-process security scanner and is not unique to Laravel Scalpel.

Recommended Production Mitigations

To run Laravel Scalpel securely in production environments, pair it with standard infrastructure-level hardening:

  1. External Scan Triggers: Instead of relying on web-accessible triggers, trigger scans externally via a secure task runner (e.g., system cron or the n8n-bastion sentinel.sh pattern) running under a different user namespace.
  2. Infrastructure Isolation: Use read-only filesystems (e.g., in Docker containers) for code zones (app/, bootstrap/, config/, public/) so attackers cannot write new files or tamper with existing code, making Laravel Scalpel scans highly predictable and robust.
  3. Decoupled Output Channels: Save outputs to write-once/read-many logs or stream findings immediately to an external log ingestion endpoint.
  4. "Smoke Alarm" Mindset: Treat Laravel Scalpel as a lightweight, early-warning "smoke alarm" to trigger quick alerts rather than a replacement for network firewalls, OS-level file integrity monitoring (FIM), or WAF policies.

Output Integrity via HMAC Signing

To prevent tampering with scan reports in transit between execution and delivery to log consumers (such as an external webhook or monitoring agent), Laravel Scalpel includes built-in HMAC signing for JSON outputs.

How It Works

When enabled, Laravel Scalpel generates an HMAC-SHA256 signature of the canonical JSON output payload and appends it as a top-level "signature" field.

  • What it protects against: Tampering with the report payload after generation (e.g., intercepting and modifying the report on disk or in transit).
  • What it does NOT protect against: An attacker with root/write privileges disabling the scan entirely, or extracting the signing key from the environment if the key is stored inside the compromised server.

Configuration & Usage

Enable signing in your config/scalpel.php or .env file:

SCALPEL_SIGNING_ENABLED=true
SCALPEL_SIGNING_KEY=your-secure-signing-secret-key-change-me

Warning: The SCALPEL_SIGNING_KEY should never default to or share the same value as your APP_KEY. Keep it isolated. Ideally, inject this key into the runtime environment via a secrets manager or deployment pipeline rather than committing it to a local .env file.

When you run a scan, the JSON output will include a signature:

php artisan scalpel:scan --format=json

Output:

{
    "total": 0,
    "findings": [],
    "signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
}

Verifying Signatures

You can verify the integrity of a scan output file using the scalpel:verify Artisan command:

# Verify a file
php artisan scalpel:verify storage/scalpel-output.json

# Verify via stdin
cat storage/scalpel-output.json | php artisan scalpel:verify -

If the payload is authentic and untampered, the command will output a success message and exit with status code 0. If the signature is invalid, missing, or the payload was tampered with, it will output an error and exit with status code 1.

Pairs Well with n8n-bastion

If you are using n8n-bastion, you can extend the sentinel.sh runner script to verify output integrity before sending findings to your webhooks.

For example, modify your cron execution script:

# Run scan and save output
php artisan scalpel:scan --format=json > /tmp/scalpel-output.json

# Verify signature before dispatching
if php artisan scalpel:verify /tmp/scalpel-output.json; then
    # Send verified payload to n8n webhook
    curl -X POST https://your-n8n-bastion-domain.com/webhook/scalpel-alert \
      -H "Content-Type: application/json" \
      -d @/tmp/scalpel-output.json
else
    # Signature failed - report tamper alert immediately!
    curl -X POST https://your-n8n-bastion-domain.com/webhook/scalpel-alert \
      -H "Content-Type: application/json" \
      -d '{"status": "tampered", "error": "Signature verification failed!"}'
fi

๐Ÿค Contributing

Contributions are welcome! Please read our contributing guide to learn how to get started, set up the development environment, and run tests.

Please make sure your code follows the existing style and includes appropriate tests.

๐Ÿ“„ License

Laravel Scalpel is open-sourced software licensed under the MIT License.