| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
?> |
| 6 |
<tr valign="top"> |
| 7 |
<th scope="row">X-Content-Type-Options |
| 8 |
<p class="description"><?php esc_html_e('Prevents Internet Explorer and Google Chrome from MIME-sniffing a response away from the declared content-type. This also applies to Google Chrome, when downloading extensions. This reduces exposure to drive-by download attacks and sites serving user uploaded content that, by clever naming, could be treated by MSIE as executable or dynamic HTML files.', 'http-headers'); ?></p> |
| 9 |
<hr> |
| 10 |
<p class="description"><?php esc_html_e('Read more at', 'http-headers'); ?> |
| 11 |
<a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options"><?php esc_html_e('MDN Web Docs', 'http-headers'); ?></a> |
| 12 |
</p> |
| 13 |
</th> |
| 14 |
<td> |
| 15 |
<fieldset> |
| 16 |
<legend class="screen-reader-text">X-Content-Type-Options</legend> |
| 17 |
<?php |
| 18 |
$http_headers_x_content_type_options = get_option('hh_x_content_type_options', 0); |
| 19 |
foreach ($http_headers_bools as $http_headers_k => $http_headers_v) |
| 20 |
{ |
| 21 |
?><p><label><input type="radio" class="http-header" name="hh_x_content_type_options" value="<?php echo esc_attr($http_headers_k); ?>"<?php checked($http_headers_x_content_type_options, $http_headers_k); ?> /> <?php echo esc_html($http_headers_v); ?></label></p><?php |
| 22 |
} |
| 23 |
?> |
| 24 |
</fieldset> |
| 25 |
</td> |
| 26 |
<td> |
| 27 |
<?php settings_fields( 'http-headers-cto' ); ?> |
| 28 |
<?php do_settings_sections( 'http-headers-cto' ); ?> |
| 29 |
<select name="hh_x_content_type_options_value" class="http-header-value"<?php echo $http_headers_x_content_type_options == 1 ? NULL : ' readonly'; ?>> |
| 30 |
<?php |
| 31 |
$http_headers_items = array('nosniff'); |
| 32 |
$http_headers_x_content_type_options_value = get_option('hh_x_content_type_options_value'); |
| 33 |
foreach ($http_headers_items as $http_headers_item) { |
| 34 |
?><option value="<?php echo esc_attr($http_headers_item); ?>"<?php selected($http_headers_x_content_type_options_value, $http_headers_item); ?>><?php echo esc_html($http_headers_item); ?></option><?php |
| 35 |
} |
| 36 |
?> |
| 37 |
</select> |
| 38 |
</td> |
| 39 |
</tr> |