Skills Plugins MCP Prompt Model 博客 我的中心
开发编程 #api #security

laravel-security

Laravel security best practices — authentication, authorization, Eloquent safety, CSRF, XSS prevention, API security, and secure deployment configurations. Use when reviewing Laravel auth, Eloquent safety, CSRF, XSS, API security, or deployment configuration.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=affaan-m-ecc-skills-laravel-security-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name laravel-security description Laravel security best practices — authentication, authorization, Eloquent safety, CSRF, XSS prevention, API security, and secure deployment configurations. Use when reviewing Laravel auth, Eloquent safety, CSRF, XSS, API security, or deployment configuration. metadata {"origin":"ECC"} Laravel Security Best Practices Comprehensive security guidelines for Laravel applications to protect against common vulnerabilities. When to Activate Setting up Laravel authentication and authorization (Sanctum, Passport, Jetstream, Breeze) Implementing user roles, permissions, and policies Configuring production security settings and environment variables Reviewing Laravel applications for security vulnerabilities Deploying Laravel applications to production Writing secure Eloquent queries and migrations Production Configuration Essential Production Settings // config/app.php 'env' => env ( 'APP_ENV' , 'production' ), 'debug' => ( bool ) env ( 'APP_DEBUG' , false ), // CRITICAL: Never true in production 'key' => env ( 'APP_KEY' ), // Must be set: php artisan key:generate // config/session.php 'secure' => env ( 'SESSION_SECURE_COOKIE' , true ), 'http_only' => true , 'same_site' => 'lax' , // Verify APP_KEY is set at boot // bootstrap/app.php or a service provider if ( empty ( config ( 'app.key' ))) { throw new RuntimeException ( 'APP_KEY is not set. Run: php artisan key:generate' ); } Environment File Security # NEVER commit .env to version control # .gitignore already includes .env by default # Use .env.example with placeholders instead DB_PASSWORD= APP_KEY= SANCTUM_TOKEN_PREFIX= # Validate required variables at boot // In AppServiceProvider::boot() $requiredKeys = [ 'app.key' , 'database.connections.mysql.database' , 'database.connections.mysql.username' ]; foreach ( $requiredKeys as $key ) { if (empty(config( $key ))) { throw new RuntimeException( "Missing required config key: { $key }" ); } } HTTPS Enforcement // AppServiceProvider::boot() or middleware if ( app ()-> environment ( 'production' )) { URL:: forceScheme ( 'https' ); request ()->server-> set ( 'HTTPS' , 'on' ); } // config/app.php for trusted proxies (load balancers) // Use specific IP ranges — * trusts all, allowing X-Forwarded-* spoofing // AWS: '10.0.0.0/8', '172.16.0.0/12', '192.168.0.0/16' 'trusted_proxies' => [ '10.0.0.0/8' , '172.16.0.0/12' ], // Force HTTPS in production via middleware // app/Http/Middleware/ForceHttps.php public function handle ( $request , Closure $next ) { if (! $request -> secure () && app ()-> environment ( 'production' )) { return redirect ()-> secure ( $request -> getRequestUri ()); } return $next ( $request ); } Authentication Sanctum (API Token Authentication) // config/sanctum.php 'stateful' => explode ( ',' , env ( 'SANCTUM_STATEFUL_DOMAINS' , sprintf ( '%s%s' , 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1' , env ( 'APP_URL' ) ? ',' . parse_url ( env ( 'APP_URL' ), PHP_URL_HOST) : '' ))); 'expiration' => 60 * 24 , // Token expiration in minutes (null = never) 'token_prefix' => env ( 'SANCTUM_TOKEN_PREFIX' , '' ), // Issuing tokens with abilities $token = $user -> createToken ( 'api-token' , [ 'read' , 'write' ])->plainTextToken; // Validate abilities on routes Route :: middleware ( 'auth:sanctum' )-> group (function () { Route :: get ( '/orders' , function () { // User must have 'read' ability abort_unless ( Auth :: user ()-> tokenCan ( 'read' ), 403 ); // ... })-> middleware ( 'abilities:read' ); Route :: post ( '/orders' , function () { // User must have 'write' ability abort_unless ( Auth :: user ()-> tokenCan ( 'write' ), 403 ); // ... })-> middleware ( 'abilities:write' ); }); Password Security // config/hashing.php // Default is bcrypt. Argon2id is stronger. 'bcrypt' => [ 'rounds' => env ( 'BCRYPT_ROUNDS' , 12 ), // Increase for stronger hashing ], 'argon' => [ 'memory' => 65536 , 'threads' => 4 , 'time' => 4 , ], // Password validation in RegisterRequest public function rules ( ): array { return [ 'password' => [ 'required' , 'confirmed' , Password :: min ( 12 ) -> letters () -> mixedCase () -> numbers () -> symbols () -> uncompromised (), // Checks haveibeenpwned ], ]; } // Rate limit login attempts // App\Http\Controllers\Auth\AuthenticatedSessionController protected function authenticated ( Request $request , $user ) { if ( $user -> wasRecentlyLockedOut ()) { // Notify user of suspicious login $user -> notify ( new SuspiciousLoginNotification ( $request -> ip ())); } } Session Management // config/session.php 'driver' => env ( 'SESSION_DRIVER' , 'database' ), // database/redis > file 'lifetime' => env ( 'SESSION_LIFETIME' , 120 ), 'expire_on_close' => env ( 'SESSION_EXPIRE_ON_CLOSE' , false ), 'encrypt' => env ( 'SESSION_ENCRYPT' , false ), // Regenerate session on login // App\Http\Controllers\Auth\AuthenticatedSessionController public function store ( LoginRequest $request ): RedirectResponse { $request -> authenticate (); $request -> session ()-> regenerate (); // CRITICAL: prevents session fixation return redirect ()-> intended ( RouteServiceProvider :: HOME ); } // Invalidate session on logout public function destroy ( Request $request ): RedirectResponse { Auth :: guard ( 'web' )-> logout (); $request -> session ()-> invalidate (); $request -> session ()-> regenerateToken (); return redirect ( '/' ); } Authorization Gates // App\Providers\AuthServiceProvider use App \ Models \ Post ; use App \ Models \ User ; use Illuminate \ Support \ Facades \ Gate ; public function boot ( ): void { Gate :: define ( 'update-post' , function (User $user , Post $post ): bool { return $user ->id === $post ->user_id; }); Gate :: define ( 'publish-post' , function (User $user ): bool { return $user ->role === 'editor' || $user ->role === 'admin' ; }); // Using before() for super-admin override Gate :: before (function (User $user , string $ability ): ? bool { if ( $user ->role === 'super-admin' ) { return true ; // Grants all abilities } return null ; // Fall through to normal checks }); } // Usage in controllers public function update ( Request $request , Post $post ): RedirectResponse { Gate :: authorize ( 'update-post' , $post ); // Or: $this->authorize('update-post', $post); // Or: abort_unless(Auth::user()->can('update-post', $post), 403); // ... } Policies // App\Policies\PostPolicy class PostPolicy { use HandlesAuthorization ; public function viewAny ( ?User $user ): bool { return true ; // Public listing } public function view ( ?User $user , Post $post ): bool { return $post ->is_published || ( $user && $user ->id === $post ->user_id); } public function create ( User $user ): bool { return $user -> hasVerifiedEmail (); // Must verify email first } public function update ( User $user , Post $post ): bool { return $user ->id === $post ->user_id; } public function delete ( User $user , Post $post ): bool { return $user ->id === $post ->user_id && $post ->created_at-> diffInDays ( now ()) <= 30 ; } public function restore ( User $user , Post $post ): bool { return $user ->role === 'admin' ; } public function forceDelete ( User $user , Post $post ): bool { return $user ->role === 'super-admin' ; } } // Register in AuthServiceProvider protected $policies = [ Post :: class => PostPolicy :: class , ]; // Controller usage public function show ( Post $post ): View { $this -> authorize ( 'view' , $post ); return view ( 'posts.show' , compact ( 'post' )); } // Blade usage @ can ( 'update' , $post ) <a href= "{{ route('posts.edit', $post ) }}" >Edit</a> @endcan @ cannot ( 'update' , $post ) <span>You cannot edit this post</span> @endcannot Middleware Authorization // Using middleware in routes Route :: put ( '/posts/{post}' , [ PostController :: class , 'update' ]) -> middleware ( 'can:update,post' ); Route :: get ( '/posts/create' , [ PostController :: class , 'create' ]) -> middleware ( 'can:create,App\Models\Post' ); // Custom authorization middleware // app/Http/Middleware/CheckRole.php class CheckRole { public function handle ( Request $request , Closure $next , string $role ): mixed { if (! $request -> user () || $request -> user ()->role !== $role ) { abort ( 403 , 'Unauthorized. This area requires role: ' . $role ); } return $next ( $request ); } } // Register in Kernel protected $routeMiddleware = [ 'role' => \App\Http\Middleware\CheckRole :: class , ]; // Route usage Route :: middleware ([ 'auth' , 'role:admin' ])-> group (function () { Route :: get ( '/admin' , [ AdminController :: class , 'index' ]); }); Eloquent Security Mass Assignment Protection // BAD: $guarded = [] allows ALL columns to be mass-assigned // NEVER use $guarded = [] in production // GOOD: Whitelist fillable attributes final class User extends Authenticatable { protected $fillable = [ 'name' , 'email' , 'phone' , 'avatar' , ]; // NEVER add 'role', 'is_admin', 'is_verified' here } // GOOD: Explicitly control which fields can be filled in requests public function store ( StoreUserRequest $request ): RedirectResponse { $user = User :: create ( $request -> safe ()-> only ([ 'name' , 'email' , 'phone' , 'avatar' ])); // $request->safe() uses validated data only // $request->only() is NOT safe on its own without validation rules } // BAD: Creating a user with request data directly User :: create ( $request -> all ()); // VULNERABLE to mass assignment!
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

验证码 --

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。