From 48c786c05af2499f5b8883dcaa9e5f1402373955 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sat, 31 Dec 2016 21:56:57 -0500 Subject: [PATCH] mime link --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index b2913c3..33717cf 100644 --- a/Readme.md +++ b/Readme.md @@ -20,7 +20,7 @@ In short this allows: app.UseHsts(maxAge: 5000, includeSubDomains: true, preload: false); //tell browsers to always use https for the next 5000 seconds app.UseReferrerPolicy(ReferrerPolicy.NoReferrer); // do not include the referrer header when linking away from your site to protect your users privacy app.UseIENoOpen(); // don't allow old ie to open files in the context of your site - app.UseNoMimeSniff(); // prevent MIME sniffing + app.UseNoMimeSniff(); // prevent MIME sniffing https://en.wikipedia.org/wiki/Content_sniffing app.UseCrossSiteScriptingFilters(); //add headers to have the browsers auto detect and block some xss attacks ... app.UseMvc(routes =>