With FCKeditor you can hack a site without problems if folder permissions are not well configured.
http://www.fckeditor.net/FCKeditor/edit ... rverPath=/
Here you can see all site, and if your web server have write permissions you can upload files. If some one uploads a php file to some server with write permisions like this.... <? rm -R -f * ?>
RE: Security problem!!!!
Now, the above link is not working anymore.
FredCK
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: Security problem!!!!
/Jay
RE: Security problem!!!!
Take a look at this page... you will find the files there (attention to carriage returns):
http://sourceforge.net/tracker/index.ph ... tid=543653
FredCK
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: Security problem!!!!
you could add to config.php:
$Config['AllowedTypes'] = array('File', 'Image', 'Flash', 'Media',....) ; //All tyes you want
And change in connector.php:
// Check if it is an allowed type.
if ( !in_array( $sResourceType, $Config['AllowedTypes']) )
return ;
With this modification you only have to edit config.php to add a new type