Do you have root SSH access? If so, you can always log into mysql to clear the cPHulk brutes database:
Code:
mysql
delete from cphulkd.brutes;
delete from cphulkd.logins;
Then to add your IP to the whitelist, do:
Code:
INSERT INTO cphulkd.whitelist (IP, ISPREFIX) VALUES ('IP#', '0');
Please replace IP# with your IP number such as 12.12.12.12:
Code:
INSERT INTO cphulkd.whitelist (IP, ISPREFIX) VALUES ('12.12.12.11', '0');
You can check if the IP was whitelisted properly by running:
Code:
SELECT * from cphulkd.whitelist;