How to remove IP Address from cPHulk

1. SSH to your server as root and execute mysql from command line

[root@server ~]# mysql

2. From mysql interface type as follows:

mysql> use cphulkd;
mysql> select IP, BRUTETIME from brutes order by BRUTETIME;
mysql> select IP, LOGINTIME FROM logins order by LOGINTIME;

The above commands shows the brute force login attempt with IPs and time. After that use the below command on shell and remove the IP.

mysql> delete from brutes;
mysql> delete from logins;

Now, You can login into your server via WHM/cPanel.

That’s it!!!

Post navigation

Arunlal Ashok

DevOps Engineer. Linux lover. Traveller.
Always happy for an open discussion! Write to arun ((@)) crybit ((dot)) com.

Leave a Reply

Your email address will not be published. Required fields are marked *