• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

ImageMagick Question...

evanb3184

New Pleskian
Disclaimer: I'm not an Linux expert, nor am I a web developer. We're currently running a LAMP stack on CentOS (Concrete5 as the CMS, Plesk for admin panel).

How can I be absolutely sure Imagemagick is not in use on my site? I've done the following:

Checked that the CentOS packages (Imagemagick, PHP extension, Perl extention) are not installed.

sudo yum list *Image*
sudo yum list *imagic*
All ImageMagick packages are "Available", not "Installed".

File system searched for anything that looked related:

sudo find / -name "*ImageMagick*"
sudo find / -name "*imagick.so*"
sudo find / -name "*imagemagick*"
sudo find / -name "*ImageMagick*"
sudo find / -name "*imagick.so*"
sudo find / -name "convert" (without the wildcards)
sudo find / -name "policy.xml"

No results on those.


PHPInfo for the actual website does not like imagick module loaded.

Anything else you'd recommend? I'm pretty sure we're in the clear, but I don't want to take any chances. Thanks in advance.
 
Checked that the CentOS packages (Imagemagick, PHP extension, Perl extention) are not installed.

sudo yum list *Image*
sudo yum list *imagic*
All ImageMagick packages are "Available", not "Installed".
It would be better to use the following command for this check:

# rpm -qa | grep -i image
 
The most simple way to get ImageMagick is to install the php from plesk, that has ImageMagick in it.

It will install ImageMagick itself, the php module, the correct configuration, etc... etc...

Extra plus point is that every php version in every centos version is end of life AND fast-cgi is better for security then php-module.
I do recommend using fast-cgi,, not cgi.

regards
Jan
 
Back
Top