laravel-security

laravel-security is a skill for Claude Code, Codex from pekral/cursor-rules. It costs 61 tokens per session (3,456 once invoked), scanned A, original, MIT.

A security guide for Laravel applications, a PHP web framework, covering login, permissions, database models, browser attacks, APIs, file uploads, secrets, and production settings. It provides secure defaults for Laravel 11 and PHP 8.3 projects.

In plain words
What is it for?
Use it when adding authentication or authorization, securing database queries and APIs, validating uploads, configuring production environments, or handling secrets and security logs.
Why use it?
It reduces common security mistakes such as exposing secrets, accepting unsafe input, or leaving endpoints and uploads insufficiently protected. It also gives checks for security-sensitive application changes.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/pekral/cursor-rules/laravel-security
Any agent
npx skills add pekral/cursor-rules --skill laravel-security
Clone the repo
git clone --depth 1 https://github.com/pekral/cursor-rules

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for laravel-security

README.md
[![agentmods](https://agentmods.dev/badge/skills/pekral/cursor-rules/laravel-security.svg)](https://agentmods.dev/skills/pekral/cursor-rules/laravel-security)
Your own site
<a href="https://agentmods.dev/skills/pekral/cursor-rules/laravel-security"><img src="https://agentmods.dev/badge/skills/pekral/cursor-rules/laravel-security.svg" alt="Measured on agentmods" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,456 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00061 $0.03456
Opus 5 $0.00030 $0.01728
Sonnet 5 $0.00012 $0.00691
Haiku 4.5 $0.00006 $0.00346

Measured 5d ago against content hash 08de6bed970c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

laravel-security scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/laravel-security/SKILL.md · 424 lines

How it starts

The opening of the file, as written. The whole thing — 424 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Laravel Security Best Practices

Constraints

  • Apply @rules/security/backend.md and @rules/security/frontend.md
  • Apply @rules/php/core-standards.mdcfinal classes, declare(strict_types=1), typed signatures
  • If the project uses Laravel, also apply @rules/laravel/laravel.mdc, @rules/laravel/architecture.mdc, @rules/laravel/filament.mdc, @rules/laravel/livewire.mdc
  • Stack: Laravel 11 / PHP 8.3, Filament, Livewire, Alpine.js, Blade, Tailwind, Pest, Vite, MySQL, Redis
  • Never hardcode secrets; never reveal them in output
  • Hard limits: this file stays <= 500 lines and <= 5000 tokens

Purpose

Secure-by-default building blocks for security-sensitive Laravel work. Use the matching section, copy the minimal snippet, and verify against the checklist. For an audit of existing code use @skills/security-review/SKILL.md.

Use when

  • Setting up authentication / authorization (Sanctum, gates, policies, middleware)
  • Configuring production settings and environment variables
  • Writing secure Eloquent queries and models
  • Hardening CSRF / XSS / input validation / file uploads / API endpoints
  • Managing secrets, queue payloads, and security event logging

Production Configuration

// config/app.php
'debug' => (bool) env('APP_DEBUG', false), // CRITICAL: never true in production
'key' => env('APP_KEY'),                    // php artisan key:generate

// config/session.php
'secure' => env('SESSION_SECURE_COOKIE', true),
'http_only' => true,
'same_site' => 'lax',

Validate required config at boot and fail fast:

// AppServiceProvider::boot()
foreach (['app.key', 'database.connections.mysql.database'] as $key) {
    if (empty(config($key))) {
        throw new RuntimeException("Missing required config key: {$key}");
    }
}

HTTPS and trusted proxies:

if (app()->environment('production')) {
    URL::forceScheme('https');
}
// Use specific CIDR ranges, never '*' (X-Forwarded-* spoofing)
'trusted_proxies' => ['10.0.0.0/8', '172.16.0.0/12'],

Read the full file on GitHub · 424 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 424 lines · 61 tokens per session scan A 08de6bed970c

Subscribe to this mod's changes

laravel-security is a skill published in the GitHub repository pekral/cursor-rules (6 stars, last pushed 5d ago), licensed MIT. It adds 61 tokens to every session and 3,456 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.