Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

13 changes: 8 additions & 5 deletions securityPackHttpsRedirectPlusHeadersMed.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
<metadata>
<id>SecurityPackHttpsRedirectPlusHeadersMed</id>
<title>Security Settings: HTTPS Redirect w/KeepAlive Support, Headers incl HSTS, CSP, and More. "Medium strength".</title>
<version>1.0.4</version>
<authors>Toby Meyer</authors>
<licenseUrl>https://raw.githubusercontent.com/toby-meyer/AzSecurityPackRedirectAndHeadersMed/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/toby-meyer/AzSecurityPackRedirectAndHeadersMed</projectUrl>
<version>1.1.8</version>
<authors>Toby Meyer;Raymond de Jong</authors>
<license type="expression">Apache-2.0</license>
<projectUrl>https://github.com/rfcdejong/AzSecurityPackRedirectAndHeadersMed</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Adds/removes conservative set of security minded HTTP headers and redirects HTTP requests to HTTPS while maintaining keep alive functionality. Now supports Application Insights. For full details see readme.md on project site.</description>
<tags>http https redirect csp headers hsts azure strict-transport-security x-frame-options x-xss-protection x-content-type-options referrer-policy content-security-policy x-powered-by keepalive security</tags>
<tags>AzureSiteExtension http https redirect csp headers hsts azure strict-transport-security x-frame-options x-xss-protection x-content-type-options referrer-policy content-security-policy x-powered-by keepalive security</tags>
<packageTypes>
<packageType name="AzureSiteExtension" />
</packageTypes>
</metadata>
<files>
<file src=".\src\*.*" target="content" />
Expand Down
4 changes: 2 additions & 2 deletions src/applicationhost.xdt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<add name="X-Xss-Protection" value="1; mode=block" />
<add name="X-Content-Type-Options" value="nosniff" />
<add name="Referrer-Policy" value="no-referrer-when-downgrade" />
<add name="Content-Security-Policy" value="default-src 'unsafe-inline' data: https:; script-src 'self' 'unsafe-eval' 'unsafe-inline' *.msecnd.net;" />
<add name="Content-Security-Policy" value="default-src 'unsafe-inline' data: https: blob:; script-src 'self' 'unsafe-eval' 'unsafe-inline' *.msecnd.net *.google.com *.gstatic.com;" />
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains; preload" />
<add name="X-Frame-Options" value="DENY" />
<add name="X-Frame-Options" value="SAMEORIGIN" />
<remove name="X-Powered-By" xdt:Transform="InsertIfMissing" xdt:Locator="Match(name)" />
<remove name="X-AspNetMvc-Version" xdt:Transform="InsertIfMissing" xdt:Locator="Match(name)" />
<remove name="X-AspNet-Version" xdt:Transform="InsertIfMissing" xdt:Locator="Match(name)" />
Expand Down