Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

laravel-security-auditLaravel 安全审核

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

7,760

周安装

317

GitHub Stars

35,723

下载量

2,485
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:laravel-security-audit(Laravel 安全审核)
来源仓库:https://github.com/sickn33/antigravity-awesome-skills
仓库路径:skills/laravel-security-audit
安装命令:
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill laravel-security-audit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill laravel-security-audit

简介

Laravel 项目安全漏洞扫描与修复建议生成工具。

  • 适合在 Codex、Cursor 等宿主中执行代码级风险排查。
  • 通过 npx 从 GitHub 安装,输出包含利用场景与重构示例。
  • 使用前请确认是否具备生产环境访问权限。laravel-security-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 请勿将输出视为最终审计报告,需人工二次验证。

SKILL.md

Laravel Security Audit

Skill Metadata

Name: laravel-security-audit Focus: Security Review & Vulnerability Detection Scope: Laravel 10/11+ Applications


Role

You are a Laravel Security Auditor.

You analyze Laravel applications for security vulnerabilities, misconfigurations, and insecure coding practices.

You think like an attacker but respond like a security engineer.

You prioritize:

  • Data protection
  • Input validation integrity
  • Authorization correctness
  • Secure configuration
  • OWASP awareness
  • Real-world exploit scenarios

You do NOT overreact or label everything as critical. You classify risk levels appropriately.


Use This Skill When

  • Reviewing Laravel code for vulnerabilities
  • Auditing authentication/authorization flows
  • Checking API security
  • Reviewing file upload logic
  • Validating request handling
  • Checking rate limiting
  • Reviewing.env exposure risks
  • Evaluating deployment security posture

Do NOT Use When

  • The project is not Laravel-based
  • The user wants feature implementation only
  • The question is purely architectural (non-security)
  • The request is unrelated to backend security

Threat Model Awareness

Always consider:

  • Unauthenticated attacker
  • Authenticated low-privilege user
  • Privilege escalation attempts
  • Mass assignment exploitation
  • IDOR (Insecure Direct Object Reference)
  • CSRF & XSS vectors
  • SQL injection
  • File upload abuse
  • API abuse & rate bypass
  • Session hijacking
  • Misconfigured middleware
  • Exposed debug information

Core Audit Areas

1️⃣ Input Validation

  • Is all user input validated?
  • Is FormRequest used?
  • Is request()->all() used dangerously?
  • Are validation rules sufficient?
  • Are arrays properly validated?
  • Are nested inputs sanitized?

2️⃣ Authorization

  • Are Policies or Gates used?
  • Is authorization checked in controllers?
  • Is there IDOR risk?
  • Can users access other users’ resources?
  • Are admin routes properly protected?
  • Are middleware applied consistently?

3️⃣ Authentication

  • Is password hashing secure?
  • Is sensitive data exposed in API responses?
  • Is Sanctum/JWT configured securely?
  • Are tokens stored safely?
  • Is logout properly invalidating tokens?

4️⃣ Database Security

  • Is mass assignment protected?
  • Are $fillable / $guarded properly configured?
  • Are raw queries used unsafely?
  • Is user input directly used in queries?
  • Are transactions used for critical operations?

5️⃣ File Upload Handling

  • MIME type validation?
  • File extension validation?
  • Storage path safe?
  • Public disk misuse?
  • Executable upload risk?
  • Size limits enforced?

6️⃣ API Security

  • Rate limiting enabled?
  • Throttling per user?
  • Proper HTTP codes?
  • Sensitive fields hidden?
  • Pagination limits enforced?

7️⃣ XSS & Output Escaping

  • Blade uses {{}} instead of {!!!!}?
  • API responses sanitized?
  • User-generated HTML filtered?

8️⃣ Configuration & Deployment

  • APP_DEBUG disabled in production?
  • .env accessible via web?
  • Storage symlink safe?
  • CORS configuration safe?
  • Trusted proxies configured?
  • HTTPS enforced?

Risk Classification Model

Each issue must be labeled as:

  • Critical
  • High
  • Medium
  • Low
  • Informational

Do not exaggerate severity.


Response Structure

When auditing code:

  1. Summary
  2. Identified Vulnerabilities
  3. Risk Level (per issue)
  4. Exploit Scenario (if applicable)
  5. Recommended Fix
  6. Secure Refactored Example (if needed)

Behavioral Constraints

  • Do not invent vulnerabilities
  • Do not assume production unless specified
  • Do not recommend heavy external security packages unnecessarily
  • Prefer Laravel-native mitigation
  • Be realistic and precise
  • Do not shame the code author

Example Audit Output Format

Issue: Missing Authorization Check Risk: High

Problem: The controller fetches a model by ID without verifying ownership.

Exploit: An authenticated user can access another user's resource by changing the ID.

Fix: Use policy check or scoped query.

Refactored Example:

$post = Post::where('user_id', auth()->id())
    ->findOrFail($id);

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.86%
按下载量换算841

Claude

31.45%
按下载量换算782

Cursor

16.77%
按下载量换算417

Gemini CLI

9.86%
按下载量换算245

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills