PHP code example of aidantwoods / secureheaders
1. Go to this page and download the library: Download aidantwoods/secureheaders library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
aidantwoods / secureheaders example snippets
$headers = new SecureHeaders();
$headers->hsts();
$headers->csp('default', 'self');
$headers->csp('script', 'https://my.cdn.org');
$headers->apply();
$headers = new SecureHeaders();
$headers->apply();
setcookie('auth', 'supersecretauthenticationstring');
$headers = new SecureHeaders();
$headers->apply();
$headers->hsts();
$headers->hsts();
$headers->safeMode();
header('Strict-Transport-Security: max-age=31536000;
$headers->csp('default', 'self');
$headers->csp('script', 'https://my.cdn.org');
class CustomSecureHeaders extends SecureHeaders{
public function __construct()
{
$this->applyOnOutput();
$this->hsts();
$this->csp('default', 'self');
$this->csp('script', 'https://my.cdn.org');
}
}
$headers = new CustomSecureHeaders();
$headers->csp('default', '*');
$headers->csp('script', 'unsafe-inline');
$headers->csp('script', 'http://insecure.cdn.org');
$headers->csp('style', 'https:');
$headers->csp('style', '*');
$headers->csp('report', 'https://valid-enforced-url.org');
$headers->cspro('report', 'whatisthis');
$myCSP = array(
'default-src' => [
"'self'"
],
'script-src' => [
'self',
'https://my.cdn.org',
'https://scripts.cdn.net',
'https://other.cdn.com'
],
'img-src' => ['https://images.cdn.xyz'],
'style-src' => 'https://amazingstylesheets.cdn.pizza',
'base' => 'self',
'form' => 'none',
'upgrade-insecure-requests' => null,
'block-all-mixed-content'
);
$headers->csp($myCSP);
$headers->csp($myCSP, $myOtherCSP);
$headers->csp('default', 'self');
$headers->csp('script', 'self');
$headers->csp('script', 'https://my.cdn.org');
$headers->csp('default', 'self', 'script', 'self', 'script', 'https://my.cdn.org');
$headers->csp('upgrade-insecure-requests');
$headers->csp('block-all-mixed-content', null);
$headers->csp('block-all-mixed-content', null, 'script', 'https://my.cdn.org');
$headers->csp('block-all-mixed-content', $csp, 'upgrade-insecure-requests');
$myCSP = array(
'default-src' => [
"'self'"
],
'script-src' => [
"'self'",
'https://my.cdn.org'
],
'script' => [
'https://scripts.cdn.net'
],
);
$myotherCSP = array(
'base' => 'self'
);
$whoopsIforgotThisCSP = array(
'form' => 'none'
);
$headers->csp(
$myCSP, 'script', 'https://other.cdn.com',
['block-all-mixed-content'], 'img',
'https://images.cdn.xyz', $myotherCSP
);
$headers->csp(
'style', 'https://amazingstylesheets.cdn.pizza',
$whoopsIforgotThisCSP, 'upgrade-insecure-requests'
);
header("Content-Security-Policy: default-src 'self'; script-src https://cdn.org 'self'");
$headers->csp('script', 'https://another.domain.example.com');