| 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 _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 |
</th> |
| 10 |
<td> |
| 11 |
<fieldset> |
| 12 |
<legend class="screen-reader-text">X-Content-Type-Options</legend> |
| 13 |
<?php |
| 14 |
$x_content_type_options = get_option('hh_x_content_type_options', 0); |
| 15 |
foreach ($bools as $k => $v) |
| 16 |
{ |
| 17 |
?><p><label><input type="radio" class="http-header" name="hh_x_content_type_options" value="<?php echo $k; ?>"<?php checked($x_content_type_options, $k); ?> /> <?php echo $v; ?></label></p><?php |
| 18 |
} |
| 19 |
?> |
| 20 |
</fieldset> |
| 21 |
</td> |
| 22 |
<td> |
| 23 |
<?php settings_fields( 'http-headers-cto' ); ?> |
| 24 |
<?php do_settings_sections( 'http-headers-cto' ); ?> |
| 25 |
<select name="hh_x_content_type_options_value" class="http-header-value"<?php echo $x_content_type_options == 1 ? NULL : ' readonly'; ?>> |
| 26 |
<?php |
| 27 |
$items = array('nosniff'); |
| 28 |
$x_content_type_options_value = get_option('hh_x_content_type_options_value'); |
| 29 |
foreach ($items as $item) { |
| 30 |
?><option value="<?php echo $item; ?>"<?php selected($x_content_type_options_value, $item); ?>><?php echo $item; ?></option><?php |
| 31 |
} |
| 32 |
?> |
| 33 |
</select> |
| 34 |
</td> |
| 35 |
</tr> |