AI QA Monkey
AI Security Intelligence
Enterprise-grade recon engine
Laravel · Framework & Config Scanner

Free Laravel Security Scanner

Detect exposed .env files, APP_DEBUG leaks, unprotected routes, and missing hardening — with copy-paste fixes written for Laravel. No signup, full audit in ~60 seconds.

.env exposure APP_DEBUG on Route & auth CSRF & headers CORS config Dependency audit

Scan Your Laravel App Now

Our AI-powered scanner detects Laravel-specific vulnerabilities including .env exposure, debug mode, mass assignment, and CSRF issues.

Initializing...

Ready to scan.

Penetration Test Report
Target: -- Date: --
Risk: --
DNS & Email Security
--
Awaiting scan
SSL / TLS Status
--
Awaiting scan
Security Headers
--
Awaiting scan
Ports & WAF
--
Awaiting scan
Files & Compliance
--
Awaiting scan
Technology
--
Awaiting scan
Vulnerability Analysis
--
Awaiting scan
Security Score
--
Awaiting scan

The Kill Chain

Attacker's view of exposure

Exposed Assets

    File Leaks

    Run a scan to detect file leaks.

    Compliance

      Premium Feature
      Unlock Full Report & Fixes - Only $29
      One-time fee per domain · No subscription

      Vulnerability Table

      Severity badges highlight risk
      Severity
      Issue
      Description
      Remediation
      Locked — full details inside
      Unlock Full Report & Fixes - Only $29
      One-time fee per domain · No subscription · 30-day money-back guarantee

      Attack Surface Map

      Observed exposure points
      Premium Feature
      Unlock Full Report & Fixes - Only $29
      One-time fee per domain · No subscription

      Compliance Mapping

      OWASP + ISO alignment
      Premium Feature
      Unlock Full Report & Fixes - Only $29
      One-time fee per domain · No subscription

      Evidence Mode

      HTTP signals captured
      Status: --
      Server: --
      Title: --

      Why Agencies Choose Us

      Best Value
      AI QA Monkey
      • SSL & Headers
      • Open Port Scan
      • .env/.git Leaks
      • WP Username Spy
      • Executive PDF
      • Cost$29 per-domain scan
      Free Tools
      • SSL & Headers
      • Open Port Scan
      • .env/.git Leaks
      • WP Username Spy
      • Executive PDF
      • CostFree
      Expensive Consultants
      • SSL & Headers
      • Open Port Scan
      • .env/.git Leaks
      • WP Username Spy
      • Executive PDF
      • Cost$1,500+

      .env File Exposure

      Checks if your .env file is publicly accessible. An exposed .env reveals database credentials, APP_KEY (used for encryption), API keys, mail passwords, and third-party secrets.

      Debug Mode Detection

      Detects APP_DEBUG=true in production. Debug mode exposes full stack traces, environment variables, database queries, and internal file paths to any visitor.

      Authentication Security

      Checks for exposed registration routes, password reset vulnerabilities, session configuration, and cookie security flags on Laravel's auth system.

      Security Headers & SSL

      Validates CSP, HSTS, X-Frame-Options, and other headers. Checks SSL/TLS configuration and Laravel's HTTPS enforcement settings.

      Exposed Routes & Storage

      Detects publicly accessible storage directories, exposed Telescope/Horizon dashboards, and route information disclosure through debug endpoints.

      Email & DNS Security

      Validates SPF, DKIM, and DMARC records. Critical for Laravel apps sending transactional emails, password resets, and notifications.

      Common Laravel Vulnerabilities

      Laravel is one of the most popular PHP frameworks, powering millions of applications. While it provides excellent security features, misconfiguration and developer mistakes create significant risks.

      1. Exposed .env Files

      The #1 Laravel vulnerability. If your web server serves the .env file, attackers get your database password, APP_KEY (used to decrypt all encrypted data), mail credentials, and every API key.

      # Block .env access in Apache (.htaccess)
      <Files ".env">
          Require all denied
      </Files>
      
      # Block .env access in Nginx
      location ~ /\.env {
          deny all;
          return 404;
      }

      See our complete Exposed .env Files Fix Guide for all platforms.

      2. Debug Mode in Production

      When APP_DEBUG=true in production, Laravel's error handler (Ignition) displays:

      # .env — PRODUCTION
      APP_DEBUG=false
      APP_ENV=production
      
      # Also disable debug in config/app.php
      'debug' => (bool) env('APP_DEBUG', false),

      3. Mass Assignment

      If $fillable or $guarded are not properly set on Eloquent models, attackers can modify any database column by adding extra fields to form submissions:

      // VULNERABLE — No protection
      class User extends Model {
          // Missing $fillable or $guarded!
      }
      
      // SECURE — Whitelist fillable fields
      class User extends Model {
          protected $fillable = ['name', 'email', 'password'];
          // 'is_admin', 'role', etc. cannot be mass-assigned
      }

      4. SQL Injection via Raw Queries

      Eloquent ORM prevents SQL injection by default, but raw queries bypass this protection:

      // VULNERABLE — Raw query with user input
      $users = DB::select("SELECT * FROM users WHERE name = '$name'");
      
      // SECURE — Parameterized raw query
      $users = DB::select('SELECT * FROM users WHERE name = ?', [$name]);
      
      // SECURE — Eloquent (always parameterized)
      $users = User::where('name', $name)->get();

      Laravel Security Checklist

      1. Block .env file access in web server configuration
      2. Set APP_DEBUG=false and APP_ENV=production
      3. Regenerate APP_KEY if it was ever exposed
      4. Set $fillable on all Eloquent models
      5. Never use raw SQL with user input — use Eloquent or parameterized queries
      6. Keep Laravel and all packages updated (composer update)
      7. Restrict access to Telescope, Horizon, and Nova dashboards
      8. Configure security headers via middleware
      9. Force HTTPS: set FORCE_HTTPS=true or use URL::forceScheme('https')
      10. Set secure cookie flags: SESSION_SECURE_COOKIE=true
      11. Set up SPF, DKIM, and DMARC for email security
      12. Run composer audit regularly for dependency vulnerabilities

      Related guides:

      Frequently Asked Questions

      What are the biggest Laravel security risks?

      Exposed .env files, debug mode in production, mass assignment vulnerabilities, SQL injection through raw queries, and insecure deserialization. The .env exposure alone can compromise your entire application.

      Is Laravel secure by default?

      Laravel provides excellent security: Eloquent prevents SQLi, Blade auto-escapes output, built-in CSRF protection, and bcrypt hashing. However, these can be bypassed through raw queries, {!! !!} output, disabled middleware, or misconfigured mass assignment.

      How do I check if my Laravel .env file is exposed?

      Visit yourdomain.com/.env in a browser. If you see environment variables, your .env is exposed — block access immediately. Use our free scanner to check for .env exposure along with 100+ other issues.

      Related Security Guides

      Live demo — 2 minutes

      Attackers scan your site every day. Watch what they find — and how one report shuts them out.

      A real site, a real scan: 27 hidden issues exposed in 60 seconds — exposed credentials, open database ports, spoofable email — then fixed the same day with the copy-paste code inside the $29 report, verified with free re-scans until the score climbs from 67 to 90, and sealed with a Verified Secure badge your visitors can see. The same recon a consultant bills $1,500+ for.

      aiqamonkey.com
      Free Scan
      Free 60-second scan · Full fix report $29 one-time · 30-day money-back guarantee
      Beyond the one-time scan

      Security isn't a one-time fix.
      It's a system that never sleeps.

      Attackers scan you every day, and new vulnerabilities ship every week. AI QA Monkey finds the holes, hands you the exact fix, then keeps watching — on an engine we update continuously so you're always tested against the latest threats.

      Find

      Scan & expose

      100+ checks across 15 attack surfaces map your full exposure the way an attacker sees it — exposed files, open ports, spoofable email, supply-chain risks and more.

      Fix

      Guided remediation

      Every finding ships with copy-paste server config, an AI Fix Prompt for ChatGPT / Claude / Cursor, and a step-by-step guide written for non-experts — backed by our library of 45+ in-depth fix guides.

      Monitor

      Watch continuously

      Automated daily or weekly re-scans track your score over time and email you the moment it drops or a new critical appears — so a regression never goes unnoticed.

      Live score tracking

      Watch your score climb — and stay up

      Fix an issue, re-scan, and see the proof. Monitoring plots your security score over time and flags any drop the moment it happens — the difference between catching a regression today and finding out after a breach.

      61 → 90Typical score lift
      DailyAutomated re-scans
      InstantDrop-alert emails
      Always improving

      Your checks never go stale

      As fresh CVEs, misconfigurations and attack techniques emerge, we build the detections straight into the engine — automatically. Recent additions include supply-chain & Magecart defense, known-CVE library scanning, client-side secret detection and source-map exposure — with more added continuously.

      • Supply-chain / Magecart
      • Known-CVE libraries
      • Client-side secrets
      • Source-map exposure
      • Full email trust suite
      45+ fix guides

      A guide for every fix

      Not sure how to apply a fix? Every issue links to a plain-English, step-by-step guide — updated as best practices evolve.

      Browse all 45 security guides
      Start free. Stay protected. Run your instant scan now — then keep the fixes flowing and the monitoring on.
      Plans & pricing

      Protection that fits how you work

      Start with a one-time audit, or stay protected with always-on monitoring. Every plan runs the same 100+ check engine — and that engine never stops growing.

      Your checks never go stale. We add new detections continuously — as fresh CVEs, misconfigurations, and attack techniques emerge, they’re built into the engine automatically. Every scan tests your site against the latest threats, with nothing for you to install or update.
      Start here · no signup

      One-Time Security Report

      Scan free in ~60 seconds and see your score. Pay once only if you want the full fix report — no account, no subscription, yours to keep forever.

      • Full 100+ check report
      • Interactive attack surface map
      • Copy-paste fixes + AI prompts
      • PDF · JSON · CSV exports
      • 30 days monitoring included
      Consultant rate $1,500+
      $29 one-time
      Run a free scan → Free scan first — pay only if you want the report · 30-day money-back
      Continuous protection

      Stay protected — never get caught off guard

      Always-on monitoring re-scans your site on your schedule and emails you the moment your score drops or a new critical vulnerability appears. Cancel anytime.

      Monitor

      Always-on early warning

      $7.99 / month
      Start monitoring
      • Daily or weekly automated re-scans, 1 domain
      • Email alerts on score drop or new critical
      • Score & vulnerability trend history
      • Always tested against newly-added checks
      • Report downloads not included

      Agency

      For teams & client work

      $79 / month
      Scale up
      • Monitor up to 10 domains
      • Daily or weekly, per domain
      • Up to 30 reports per domain / month
      • Presentation-ready PDF exports
      • Priority support

      All subscriptions are month-to-month — cancel anytime. One-time report is a single payment, no renewal. Prices in USD.