paramonovav/laravel4-header-csp 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

paramonovav/laravel4-header-csp

最新稳定版本:1.0.0

Composer 安装命令:

composer require paramonovav/laravel4-header-csp

包简介

Provides support for enforcing Content Security Policy with headers in Laravel 4 responses.

README 文档

README

Latest Stable Version Total Downloads Latest Unstable Version License

Provides support for enforcing Content Security Policy and XSS Protection with headers in Laravel 4 responses.

Note: Based on Content Security Policy, Improving Web Security with the Content Security Policy, HTTP headers.

Key Features

  1. Add rules for Content Security Policy (content-security-policy, x-content-security-policy, x-webkit-csp)
  2. Save reports of policy failures to storage/logs/content-security-policy-report folder if needed
  3. Add additional header like: x-xss-protection, x-frame-options, x-content-type-options

Installation

Require this package with composer:

composer require paramonovav/laravel4-header-csp

After updating composer, add the ServiceProvider to the providers array in app/config/app.php

'Paramonovav\Laravel4HeaderCsp\Laravel4HeaderCspServiceProvider',

You need to publish the config from this package.

php artisan config:publish paramonovav/laravel4-header-csp

Usage

Apply content security policy to routes

The following will apply all default profiles to the login route.

Route::get('login', array('after'=>'response.secure'), function()
{
    return 'Hello, on login page !';
}));

The following will apply all default profiles and a specific google profile to the login route.

Route::get('login', array('after'=>'response.secure:google'), function()
{
    return 'Hello, on login page !';
}));

You can include any number of specific profiles. The following will apply default, google, flickr, and my_custom profiles to the login route.

Route::get('login', array('after'=>'response.secure:google-flickr-my_custom'), function()
{
    return 'Hello, on login page !';
}));

统计信息

  • 总下载量: 73
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-08-07