Skip to content

Instantly share code, notes, and snippets.

@The-Scott
Last active January 10, 2019 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save The-Scott/f7b5d03e260036cfc4dce5ad89578377 to your computer and use it in GitHub Desktop.
Save The-Scott/f7b5d03e260036cfc4dce5ad89578377 to your computer and use it in GitHub Desktop.
The Gold Standard Web Config
Content-Security-Policy "default-src 'self'; script-src 'self'; img-src 'self'; font-src 'self'; style-src 'self'; connect-src https:"
Feature-Policy "accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; encrypted-media 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'none'; payment 'none'; picture-in-picture 'none'; speaker 'none'; usb 'none'"
Referrer-Policy "strict-origin"
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<!-- Remove the X-Powered-By header -->
<remove name="X-Powered-By" />
<!-- Add the HTTP Strict Transport Security (HSTS) header to enforce HTTPS 31536000-->
<add name="Strict-Transport-Security" value="max-age=31536000"/>
<!-- X-Frame-Options prevents framing in another site (Clickjacking / UI Redressing attacks) -->
<!-- SAMEORIGIN required to retrieve token from Graph API -->
<add name="X-Frame-Options" value="DENY" />
<!-- X-XSS-Protection protection header blocks all requests that contain XSS attacks -->
<add name="X-XSS-Protection" value="1; mode=block" />
<!-- X-Content-Type-Options header prevents MIME sniffing-->
<add name="X-Content-Type-Options" value="nosniff" />
<!-- Content Security Policy (CPS) header sets a whitelist of sources for loading scripts, styles etc -->
<add name="Content-Security-Policy" value="default-src 'self'; script-src 'self'; img-src 'self'; font-src 'self'; style-src 'self'; connect-src https:;"/>
<!-- Feature Policy, for limiting access to Mobile Device Actions, like Vibrate or Notification -->
<add name="accelerometer 'self'; ambient-light-sensor 'self'; autoplay 'self'; camera 'self'; encrypted-media 'self'; geolocation 'self'; gyroscope 'self'; magnetometer 'self'; microphone 'self'; midi 'none'; payment 'none'; picture-in-picture 'none'; speaker 'none'; usb 'none';"/>
<!-- Referrer Policy, for controlling how and when the browser sends the 'Referrer: URL' request header -->
<add name="Referrer-Policy" value="strict-origin" />
</customHeaders>
</httpProtocol>
<security>
<!--- Remove the Server: IIS 10 Header -->
<requestFiltering removeServerHeader="true"/>
</security>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment