関数 send_nosniff_header()
定義ファイル :/blog/wp-includes/functions.php 20
send_nosniff_header()
1 2 3 4 5 6 7 8 9 10 11 | /** * Send a HTTP header to disable content type sniffing in browsers which support it. * * @since 3.0.0 * * @see http://blogs.msdn.com/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx * @see http://src.chromium.org/viewvc/chrome?view=rev&revision=6985 */ function send_nosniff_header() { @header( 'X-Content-Type-Options: nosniff' ); } |