I know it has been a while, but if anyone else is facing this problem.
You should use the plugin as described here to check all the images, and if the user tries to insert an image, then he is warned that "images" are not allowed.
Please note that the plugin is not available for download, so we may need to create our own plugin. It is pretty simple. We just need to copy and paste its code into the plugin.js file.
CKEDITOR.plugins.add( 'blockimagepaste', { init : function( editor ) { function replaceImgText(html) { var ret = html.replace( /<img[^>]*src="data:image\/(bmp|dds|gif|jpg|jpeg|png|psd|pspimage|tga|thm|tif|tiff|yuv|ai|eps|ps|svg);base64,.*?"[^>]*>/gi, function( img ){ alert("Direct image paste is not allowed."); return ''; }); return ret; } function chkImg() {
Another option is explained here (which, I believe, only works when pasted, does nothing when the image is being dragged!)
source share