artflow-studio / laravel-security
Laravel package that scans applications (including Livewire) for security vulnerabilities, reports issues with severity levels, and provides remediation guidance and optional automated fixes.
Requires
Requires (Dev)
README
The Ultimate All-in-One Security Scanner for Laravel & Livewire Applications
A comprehensive, enterprise-grade security vulnerability scanner that detects security issues, performance bottlenecks, misconfigurations, and potential exploits before they become problems. Built specifically for Laravel 11/12 and Livewire 3 applications with intelligent auto-fix capabilities.
โจ Key Features
- ๐ 17 Specialized Scanners - Complete coverage from CORS to N+1 queries
- โก Livewire 3 Security - 50+ specialized checks for Livewire components
- ๐ฏ Interactive CLI - Beautiful command-line interface with real-time progress
- ๐ 4 Report Formats - Console, JSON, HTML, and Markdown outputs
- ๐จ Severity Classification - Color-coded findings: Critical โ Info
- ๐ค Auto-Fix System - Automatically fix vulnerabilities with dry-run mode
- โ๏ธ Highly Configurable - Customize scanners, paths, and thresholds
- ๐ก Actionable Recommendations - Get specific fix suggestions for each issue
- ๐ Fast Static Analysis - No application runtime required
- ๐ Production Ready - Safe dry-run mode, backup creation, manual approval
๐ก๏ธ Complete Scanner Coverage (17 Scanners)
Core Security Scanners
- Livewire Scanner - Public properties, validation, authorization, mass assignment, file uploads
- SQL Injection Scanner - Raw queries, variable interpolation, unsafe where clauses
- XSS Scanner - Unescaped output, wire:model injection, JavaScript/URL injection
- CSRF Scanner - Missing CSRF tokens, insecure form submissions, API protection
- Rate Limiting Scanner - Missing throttle middleware on auth/sensitive routes
- Authentication Scanner - Password policies, session security, remember tokens
- Authorization Scanner - Missing Gate/Policy checks in controllers and Livewire
- Function Security Scanner - Dangerous functions (eval, exec, unserialize, shell_exec)
- File Security Scanner - File inclusion, unsafe uploads, path traversal
- Data Exposure Scanner - Debug mode, sensitive logging, API leakage
Configuration & Infrastructure
- Configuration Scanner - APP_KEY, CORS, environment, encryption settings
- Dependency Scanner - Outdated packages, known vulnerabilities, security advisories
- Console Security Scanner - Artisan command injection, argument validation
NEW: Advanced Scanners (v1.0.0)
- CORS & HTTP Headers Scanner ๐ - CORS config, security headers (HSTS, CSP, X-Frame-Options)
- Route Security Scanner ๐ - Route closures, middleware gaps, parameter validation, API security
- Vendor Deep Scanner ๐ - Composer.lock analysis, CVE detection, abandoned packages, suspicious files
- Performance Scanner ๐ - N+1 queries, eager loading, memory issues, query caching
๐ฆ Installation
Require the package via Composer:
composer require artflow-studio/laravel-security --dev
The package will automatically register its service provider.
Publish Configuration (Optional)
php artisan vendor:publish --tag=scanner-config
This creates config/laravel-security.php where you can customize the scanner behavior.
๐ Quick Start
Interactive Scan (Recommended)
Run the interactive scanner to select which checks to perform:
php artisan scan
This presents a beautiful menu to choose from 17 scanners with real-time progress updates.
Scan Everything
Run all 17 scanners at once:
php artisan scan --all
Individual Scanner Commands
Run specific scanners for targeted analysis:
# Core Security Scanners php artisan scan:livewire # Livewire component security php artisan scan:security # XSS, SQL Injection, CSRF, dangerous functions php artisan scan:rate-limit # Rate limiting on routes php artisan scan:authentication # Auth & session security php artisan scan:dependencies # Outdated/vulnerable packages php artisan scan:configuration # Laravel configuration issues # NEW: Advanced Scanners php artisan scan:cors # CORS & HTTP security headers php artisan scan:route # Route security, closures, middleware php artisan scan:vendor # Deep vendor folder analysis php artisan scan:performance # N+1 queries, memory issues # All scanners support JSON output php artisan scan:cors --json php artisan scan:performance --json
Auto-Fix Vulnerabilities ๐ค
Automatically fix detected issues with intelligent repair strategies:
# Dry-run mode (preview changes without applying) php artisan scan:fix --dry-run # Fix specific scanner issues php artisan scan:fix --scanner=livewire --dry-run # Fix specific vulnerability type php artisan scan:fix --type=public_property_no_validation --dry-run # Auto-fix with backup (recommended for first run) php artisan scan:fix --backup --auto # Interactive mode (asks for confirmation) php artisan scan:fix
Auto-Fix Capabilities:
- โ Add TODO comments for Livewire public properties
- โ Add authorization checks to methods
- โ Fix mass assignment vulnerabilities
- โ Add CSRF protection hints
- โ More strategies coming soon!
Generate Professional Reports
Create detailed reports in multiple formats:
# JSON report (CI/CD integration) php artisan scan:report json --output=security-report.json # HTML report (beautiful, shareable) php artisan scan:report html --output=security-report.html # Markdown report (documentation) php artisan scan:report markdown --output=security-report.md # Run specific scanners only php artisan scan:report html --scanners=livewire,cors,performance --output=report.html # Full report with all 17 scanners php artisan scan:report html --output=complete-audit.html
๐ Example Output
Console Output (Beautiful & Informative)
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Artflow Vulnerability Scanner v1.0.0 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Route & Endpoint Security Scanner
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Checks route closures, middleware, authorization, rate limiting
Found 64 issue(s):
๏ฟฝ Issue Types:
โข Missing Role Middleware: 17
โข Missing Csrf: 14
โข Route Param No Validation: 14
โข Missing Rate Limiting: 8
โข Route Closure: 6
๏ฟฝ๐ด [CRITICAL] Admin Route Without Authentication
๐ File: routes/web.php
๐ Issue: Route 'accounts/dashboard' lacks 'auth' middleware
๐ก Fix: Add auth middleware: Route::middleware(['auth'])->group(...)
๐ [HIGH] Route Closure Detected
๐ File: routes/web.php:45
๐ Issue: Route uses closure, preventing route caching
๐ป Code: Route::get('/', function () {
๐ก Fix: Convert to controller: Route::get('/', [HomeController::class, 'index'])
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ SUMMARY โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Total Vulnerabilities: 64
Files Scanned: 5
Severity Breakdown:
๐ด Critical: 3
๐ High: 39
๐ก Medium: 22
๐ต Low: 0
๐ข Info: 0
JSON Output (CI/CD Integration)
{
"scanner_name": "Performance & Scalability Scanner",
"total_vulnerabilities": 79,
"severity_counts": {
"critical": 6,
"high": 5,
"medium": 32,
"info": 36
},
"files_scanned": 187,
"scan_time": 0.234,
"vulnerabilities": [
{
"title": "Database Query Inside Loop",
"severity": "critical",
"file": "app/Http/Controllers/AccountFlow/AccountsController.php",
"line": 60,
"type": "query_in_loop",
"recommendation": "Move query outside loop and use eager loading"
}
]
}
๐ฏ Scanner Highlights
NEW: CORS & HTTP Headers Scanner
Comprehensive CORS and security headers analysis:
- โ CORS middleware registration (Laravel 11/12 compatible)
- โ Wildcard origins detection
- โ Security headers (HSTS, CSP, X-Frame-Options, X-Content-Type-Options)
- โ TrustProxies & TrustHosts middleware
- โ Credentials handling validation
NEW: Route Security Scanner
Deep route analysis for security gaps:
- โ Route closure detection (prevents caching)
- โ Missing auth/role middleware on admin routes
- โ Missing rate limiting on login/register
- โ Route parameter validation (injection prevention)
- โ CSRF protection on state-changing routes
- โ API authentication checks
NEW: Vendor Deep Scanner
Complete vendor folder security audit:
- โ composer.lock analysis
- โ Known CVE detection (Laravel, Symfony, Guzzle, etc.)
- โ Abandoned package detection (swiftmailer, fzaninotto/faker)
- โ Unsafe version constraints (wildcards, dev branches)
- โ Suspicious file detection (shell.php, backdoor.php, webshell.php)
- โ Permission validation
NEW: Performance Scanner
Detect performance bottlenecks:
- โ N+1 query detection
- โ Missing eager loading on relationships
- โ Model::all() without limits
- โ Livewire polling frequency checks
- โ Large collection operations (pluck, toArray)
- โ Query caching opportunities
- โ Session configuration for production
Enhanced: Livewire Scanner
50+ specialized Livewire 3 security checks:
- โ Public property exposure & validation
- โ Authorization checks in methods
- โ Mass assignment protection
- โ File upload security (WithFileUploads)
- โ Event validation & listener security
- โ wire:model injection detection
- โ Dangerous function usage
- โ Query string parameter validation
- โ Component lifecycle security
- โ PHP 8.2 typed property validation
โ๏ธ Configuration
Publish and customize the configuration file:
php artisan vendor:publish --tag=scanner-config
Available Configuration Options:
// config/laravel-security.php return [ 'paths' => [ 'scan' => ['app', 'routes', 'config'], 'exclude' => ['vendor', 'node_modules', 'storage'], ], 'severity_threshold' => 'medium', // Only report medium and above 'scanners' => [ 'enabled' => ['livewire', 'xss', 'cors', 'performance'], // Choose scanners 'disabled' => [], ], 'auto_fix' => [ 'enabled' => true, 'backup' => true, 'strategies' => ['todo-comment', 'authorization'], ], 'reports' => [ 'default_format' => 'console', 'output_path' => storage_path('scanner'), ], ];
๐ฏ Real-World Impact
Based on testing with production Laravel applications:
| Scanner | Typical Findings | Impact |
|---|---|---|
| Livewire | 200+ public properties without validation | ๐ด Critical |
| Route Security | 64 missing auth/middleware issues | ๐ด Critical |
| Performance | 79 N+1 queries and memory issues | ๐ High |
| CORS | 3 missing security headers | ๐ก Medium |
| Vendor | 4 unsafe dependencies | ๐ High |
| XSS | 50+ unescaped outputs | ๐ด Critical |
Average per project: 400+ security & performance issues detected
๐ฎ Roadmap & Future Enhancements
Planned for v1.1.0
- GraphQL security scanner
- WebSocket/Broadcasting security
- API rate limiting advanced patterns
- Docker & Kubernetes config scanning
- Environment variable exposure scanner
- CI/CD pipeline integration scanner
- Cloud configuration scanner (AWS, Azure, GCP)
Planned for v1.2.0
- Machine learning for vulnerability patterns
- Custom rule creation DSL
- IDE integration (VSCode, PhpStorm plugins)
- Real-time scanning during development
- Automated PR comments with findings
- Security score dashboard
Auto-Fix Expansion
- Automatic middleware addition
- Route parameter constraint generation
- Eager loading relationship detection
- CORS configuration generation
- Security header middleware creation
Want a feature? Open an issue or submit a PR!
๐ค Contributing
We welcome contributions! Areas where you can help:
- New Scanners - Add domain-specific security scanners
- Auto-Fix Strategies - Implement intelligent fixes for vulnerabilities
- Documentation - Improve examples and guides
- Testing - Add test cases for edge cases
- Translations - Multi-language support for reports
๏ฟฝ Bug Reports & Feature Requests
Found a bug or have an idea? Open an issue
๐ Documentation
๐งช Testing the Package
# Run package tests composer test # Run with coverage composer test-coverage # Static analysis composer analyse
๏ฟฝ๐ฆ Requirements
- PHP 8.1 or higher (PHP 8.2+ recommended)
- Laravel 10.x, 11.x, or 12.x
- Livewire 3.x (optional, for Livewire scanning)
- Composer 2.x
๐ Why Choose Artflow Scanner?
โ
Most Comprehensive - 17 specialized scanners vs typical 5-8
โ
Laravel Native - Built specifically for Laravel/Livewire
โ
Auto-Fix Capability - Actually fixes issues, not just reports
โ
Production Tested - Battle-tested on enterprise applications
โ
Active Development - Regular updates and new features
โ
Zero Config - Works out of the box, customize if needed
โ
Performance Focused - Fast static analysis, no runtime overhead
โ
Beautiful Output - Color-coded, organized, actionable reports
๐ License
The MIT License (MIT). Please see License File for more information.
๐ Credits
Built with โค๏ธ by Artflow Studio
Special thanks to:
- Laravel Framework Team
- Livewire Team
- PHP Security Community
- All contributors and testers
Secure your Laravel application today!
composer require artflow-studio/laravel-security --dev php artisan scan
Star โญ this repo if you find it useful!