Installation ========= wget http://www.rfxn.com/downloads/maldetect-current.tar.gz tar -xzvf maldetect-current.tar.gz cd maldetect-* sh install.sh After running the install script , the installation will complete with in seconds and you will be provided with successful installation output, in this information some of the main configuration and usage related information provided is   below :installation completed… Continue Reading Maldet scanner for cPanel

This Post will help you in setting Max Emails allowed per hour in various Levels: To set the Value Server Wide: You can set the value in the following file in the case of cPanel: ===== /var/cpanel/maxemailsperhour===== You can set this limit at the user level by editing the following… Continue Reading cPanel max emails per hour, max emails per domain

Prompt for Username and password when accessing the site in Plesk:============================================ Issue : We may get a pop-up prompting for username and password when we access a site in the browser. Cause : The permission for the User will be wrong. Resolution : Please check whether ‘Plesk Domain user, Plesk… Continue Reading Site prompting for username and password when accessing in browser

You can check with the following command to see the opened/closed ports of a server: ======# nmap -P0 -T4 -sV -p- Server_IP_AddressStarting Nmap 5.00 ( http://nmap.org ) at 2012-02-16 06:28 ISTConnect Scan Timing: About 90.53% done; ETC: 06:47 (0:01:47 remaining) Interesting ports on xxx.xxxx.xx (Server_IP_Address): Not shown: 65480 filtered ports,… Continue Reading Command to check the opened/closed ports in a server

Now a days we are getting more DDOS issues. In order to track down the actual site undergoing the attack, following commands will help you. Find the IP to which connections are established: # netstat -plan|grep :80|awk {‘print $4’}|cut -d: -f 1|sort|uniq -c|sort -nk 1 This will give you IP… Continue Reading To troubleshoot DDOS

Script to check the load of all VPS from the main node: # for i in `vzlist |egrep -v ‘(VEID|CTID)’ |awk ‘{print $1}’`; do echo “For VEID $i (`vzctl exec $i hostname`) —>” ; vzctl exec $i w ; echo; doneInstead of “w” replace with the COMMANDS you need to… Continue Reading Script to check Virt VPS load (and other commands)

You can make use of the following script to generate a backup of all the databases and also restoring the DB from the available backup in cPanel owned by a particular user. ============= #!/bin/bash cd /var/lib/mysql ls -al | grep username | awk {‘print$9’} > dblist for i in `cat… Continue Reading Script to Make a backup of the current database and restore DB from the available backup of all the database owned by a particular user in cPanel

Introduction A hacked WordPress website can be a frustrating experience for any website owner. One of the most common signs of a compromise is when hackers modify the index.php file to display their own messages, logos, advertisements, or defacement pages instead of your website content. In some cases, attackers may… Continue Reading WordPress index hacked page recovery

Introduction WordPress powers millions of websites worldwide, making it one of the most popular Content Management Systems (CMS) available today. Its flexibility, ease of use, and extensive ecosystem of themes and plugins make it a preferred choice for businesses, bloggers, and developers alike. However, despite its reliability, WordPress websites can… Continue Reading Common issues with WordPress and their Fixes

Introduction The wp-admin/index.php file is one of the core files in WordPress. It is responsible for loading the main WordPress Admin Dashboard after a user logs in to the admin panel. The Dashboard is the first screen displayed in the WordPress admin area. It provides quick access to important site… Continue Reading WordPress wp-admin index.php Page