How to clear the brute force database

ARUN Post in ATTACK, MYSQL
0

When you are blocked by brute force 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> delete from brutes;

« Prev: :Next »

Leave a Reply

You must be logged in to post a comment.