CKEditor的自動刪除樣式屬性XSS屬性,並添加「刪除」一樣,如果我把一個元素的樣式屬性XSS屬性:CKEditor的自動刪除樣式屬性,並添加「刪除」
<div class="text-center" style="text-align: center;">Test Heading</div>
保存後,我得到了下面的輸出:
<div class="text-center" xss="removed">Test Heading</div>
我的配置是:
var toolbar_custom=[
{ name: 'document', items: [ 'Source' ] },
{ name: 'editing', items: [ 'Scayt' ] },
{ name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },
{ name: 'paragraph', items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'] },
{ name: 'insert', items: [ 'Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak', 'Iframe' ] },
{ name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] },
{ name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ]}
];
jQuery(function(){
CKEDITOR.replace('template_editor_custom',{
uiColor:'#2778a7',
toolbar:toolbar_custom,
autoParagraph:false,
enterMode:CKEDITOR.ENTER_DIV,
allowedContent:true,
extraAllowedContent:'*{*}'
})
});
的Html :
<textarea class="form-control textbox-style" id="template_editor_custom" name="page[content]" placeholder="Page content"><?php echo set_value('page[content]', $content); ?></textarea>
不,我使用CI V3。 1.X,我通過從列表中刪除核心/ Security.php文件中刪除樣式限制來解決該問題。如果我將全局xss過濾設置爲false,則會影響整個網站的安全性。 –