Website Hacked OR Blacklisted? Get it Cleaned & Protected Immediately! 50% OFF – Attacker.NET

Website Hacked OR #Blacklisted? Get it Cleaned & Protected Immediately! 50% OFF https://attacker.net/website-security-plans-pricing https://attacker.net/website-security Free Scanner: https://scan.attacker.net #Security #wordpress #joomla #magento #drupal #hosting #cpanel #linux #websitesecurity #securedwebsite #hacked

Attacker.NET 50% End of Year Promotion

Our biggest sale of 2019 is live until Jan 1st 2020! Get 50% off Websites Security plans, Server Management plans, Malware Cleanup & Removals, Website Firewall protection and more. Our website security solutions include website monitoring, Malware detection, Hack cleanup, Firewall protection and much more!   https://attacker.net/website-security https://attacker.net/website-security-plans-pricing You can check our Free Website Security… Continue reading Attacker.NET 50% End of Year Promotion

Professional Linux & Windows Server Management & Security Services (cPanel, Plesk, DirectAdmin and others)

 We provide a wide range of server management plans. You can completely customize your order or feel free to contact us. All of our experts are highly trained and certified. You can rest assured that you’re always in safe hands. Our Server Management services: Linux Server management Windows Server Management VPS Node management Feel free to… Continue reading Professional Linux & Windows Server Management & Security Services (cPanel, Plesk, DirectAdmin and others)

Rsync remote attack-CVE-2014-9512

rsync 3.1.1 allows remote attackers to write to arbitrary files via a symlink attack on a file in the synchronization path.   Timeline January 5, 2015 MITRE reserved CVE February 12, 2015 NVD published advisory Authority references http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-9512 http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-9512 Vendor & other references https://bugzilla.samba.org/show_bug.cgi?id=10977 http://xteam.baidu.com/?p=169 http://lists.opensuse.org/opensuse-updates/2015-02/msg00041.html

GHOST: glibc vulnerability (CVE-2015-0235)

Background Information GHOST is a ‘buffer overflow’ bug affecting the gethostbyname() and gethostbyname2() function calls in the glibc library. This vulnerability allows a remote attacker that is able to make an application call to either of these functions to execute arbitrary code with the permissions of the user running the application. Impact The gethostbyname() function… Continue reading GHOST: glibc vulnerability (CVE-2015-0235)

Linux is just the kernel, GNU is the OS.

This is an interesting read and some old history copied from http://www.gnu.org/gnu/linux-and-gnu.html Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called “Linux”, and many of its users are not aware that it is basically the… Continue reading Linux is just the kernel, GNU is the OS.

Can I add more RAM to my 32 bit Operating System (OS)?

Some 32 bit Operating Systems (OS) limit the amount of RAM they will support. Exceeding that limit may contribute to a number of problems. Therefore it is not supported. Upgrading to a 64 bit Operating Systems (OS) is recommended. A list of 32 bit Operating Systems (OS) with limited RAM is below.   Operating System… Continue reading Can I add more RAM to my 32 bit Operating System (OS)?

How to increase /tmp partition size on a non-control panel server

Stop Apache and MySQL services. # /etc/init.d/httpd stop; /etc/init.d/mysql stop Take a backup of /tmp # cp -rp /tmp /tmp.bak Create a partition of 2GB using the below command # dd if=/dev/zero of=/usr/temp-disk bs=2M count=1024 Create the file system on it using the mke2fs command # mke2fs -j /usr/temp-disk Unmount the current /tmp partition #… Continue reading How to increase /tmp partition size on a non-control panel server

Why do I need an owned IP for my own SSL certificate?

The reason you must have your own dedicated IP address when you want to use your own SSL certificate (when you don’t want the server wide shared certificate) is because of the way SSL and Apache (httpd) works. For name based web-hosting (when many domains are on one IP) the web browser will pass the… Continue reading Why do I need an owned IP for my own SSL certificate?

Redirect domain.com to www.domain.com

If you want to force clients to use www.domain.com, you can redirect them from domain.com to the www version with an .htaccess file. In your public_html folder, create a file called .htaccess and add the code: RewriteEngine On RewriteCond %{HTTP_HOST} ^domain\.com RewriteRule ^(.*)$ http://www.domain.com/$1 [R=permanent] where you’d need to replace domain\.com and domain.com with your actual domain name.  Note the \ character must… Continue reading Redirect domain.com to www.domain.com