Admin-Ahead Community

Linux => Control Panels => cPanel => Topic started by: rohitj on November 30, 2013, 12:15:08 pm

Title: Clear the Brute Force Database in WHM
Post by: rohitj on November 30, 2013, 12:15:08 pm
Clear the Brute Force Database in WHM

When you are blocked by brute force and unable to access the WHM control pane, try the below command to clear the database.

SSH to server

mysql -u user -p

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


 ;)