kenjis / csp
Implementation of Content Security Policy (CSP) nonce-source
Installs: 2 668
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 0
Open Issues: 4
Requires
- php: >=5.4.0
- ext-openssl: *
- crossjoin/browscap: dev-master
- woothee/woothee: 1.0.*
Requires (Dev)
- codeception/aspect-mock: 0.5.*
- phpunit/phpunit: 4.3.*
This package is auto-updated.
Last update: 2024-11-19 21:34:23 UTC
README
CSP (Content Security Policy) nonce-source library for PHP.
What is CSP nonce-source?
It is one of CSP 2 features to prevent XSS.
If you don't know, please see CSP for the web we have | Mozilla Security Blog.
Requirement
- PHP 5.4 or lator
Installation
$ git clone https://github.com/kenjis/php-csp-nonce-source.git
$ cd php-csp-nonce-source
$ composer install
Usage
All you have to call is only Csp::sendHeader()
and Csp::getNonce()
.
Csp::sendHeader()
sends CSP header.
Csp::getNonce()
returns nonce value.
<?php require __DIR__ . '/bootstrap.php'; Csp::sendHeader(); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Sample of CSP nonce-source</title> </head> <body> <script type="text/javascript" nonce="<?= Csp::getNonce() ?>"> alert('This works!'); </script> <script type="text/javascript"> alert('This does not work!'); </script> </body> </html>
You can test it with PHP built-in web server.
$ php -S localhost:8000
And browse http://localhost:8000/.
You can see CSP violation report in csp-report.log
file.
(Optional) Add other polices
You can add other polices using Csp::addPolicy()
.
<?php require __DIR__ . '/bootstrap.php'; Csp::addPolicy('default-src', 'self'); Csp::addPolicy('img-src', 'img.example.com'); Csp::sendHeader();
(Optional) Report Only
You can set Report Only Mode using Csp::setReportOnly()
.
<?php require __DIR__ . '/bootstrap.php'; Csp::addPolicy('default-src', 'self'); Csp::setReportOnly(); Csp::sendHeader();
You can see CSP violation report in csp-report.log
file.
License
MIT License. See LICENSE.md.
Reference
- Content Security Policy Level 2 http://www.w3.org/TR/2014/WD-CSP2-20140703/
- Firefox Notes Version 31.0 https://www.mozilla.org/en-US/mobile/31.0/releasenotes/
- CSP for the web we have | Mozilla Security Blog https://blog.mozilla.org/security/2014/10/04/csp-for-the-web-we-have/