Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: Clear the Brute Force Database in WHM  (Read 3980 times)

0 Members and 1 Guest are viewing this topic.

rohitj

  • Guest
Clear the Brute Force Database in WHM
« 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;


 ;)