ImageMagick, an open-source image processing software suite, has released versions 7.0.1-1 and 6.9.3-10 to address a vulnerability in previous software versions. Exploitation of this vulnerability may allow an attacker to take control of an affected system. Evidence : http://arstechnica.com/security/2016/05/exploits-gone-wild-hackers-target-critical-image-processing-bug/ https://www.us-cert.gov/ncas/current-activity/2016/05/04/ImageMagick-Vulnerability You can fix it by edit policy.xml file. Add following lines to policy.xml file <policy ...
When you try to install a certificate in IIS you may see error like ASN1 bad tag value. You can d o below steps to fix it. Step1: Install the certificate using MMC Open the Certificate Snap-In from within the MMC Start -> Run -> Type “mmc” -> File -> Add/Remove Snap-in -> Add -> ...
True story – “We are moved to cloud” I’m Cathy, a real estate service provider in London. We are a small business with a team of 10 members at this moment. We used to communicate with customers over phone and email. Since we were using shared email services for our employees, we faced lot of ...
Here were are going to create a 4GB SWAP memory. You can do this buy specifying a block size of 1GB with a count of 4. You can specify your own swap size. sudo dd if=/dev/zero of=/swapfile bs=1G count=4 Enabling the Swap File Make sure the file has proper permission. sudo chmod 600 /swapfile Now ...
There are two reasons for this error “cannot allocate memory for the buffer pool” 1) The system has no enough RAM or SWAP 2) innodb_buffer_pool_size is bigger. To fix this problem you can try two things 1) Add swap memory. 2) Edit /etc/my.cnf, and add the following line under the [mysqld] heading. [mysqld] innodb_buffer_pool_size=64M Now ...
We’re very pleased to announce that we have added a great new vendor to our line card. We sought out and found the best cloud-based security suite available and those products come from a company called iSheriff. iSheriff offers effective web, email and endpoint security all delivered in the cloud through a single interface. What’s ...
Email spam attacks are very common now a days and mos popular service provider such as google and Microsoft also cannot filter emails properly. The proposed Email Security Service is a cloud-based anti-spam, email security and archiving solution. It rids your organization’s incoming email of spam, while securing your network and data against malware, sophisticated ...
Add RPM Forge repository. 32-bit: rpm -ivH http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm 64-bit: rpm -ivH http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm Disable RPMForge by default (if you leave things like this enabled, it will break your system). # sed -i ‘s/enabled = 1/enabled = 0/g’ /etc/yum.repos.d/rpmforge.repo Install mod_suphp via yum: Install suPHP # yum install mod_suphp -y –enablerepo=rpmforge Edit PHP Handler: sed -i ‘s/x-httpd-php=php:/usr/bin/php/x-httpd-php=”php:/usr/bin/php-cgi”/g’ ...
You can install all versions of php either from source or install the default version using yum installer. My server has php5.3 already installed and I am going to install PHP5.6 from source. Prerequisites Install suphp and configure mkdir -p /usr/local/php56 mkdir -p /etc/php56 mkdir -p /etc/php56/php.d Download php5.6 wget http://de1.php.net/distributions/php-5.6.19.tar.gz Compile php ./configure –prefix=/usr/local/php56 ...