I would like to disable accounts after x failed login attempts. Is it possible?
Asked
Active
Viewed 7,362 times
2 Answers
4
Also you can use fail2ban for this goal as too easily way . In this case you just install it on you linux OS, then enable the section for [mysqld-iptables] in the /etc/fail2ban/jail.local.
[mysqld-iptables]
enabled = true
filter = mysqld-auth
action = iptables[name=mysql, port=3306, protocol=tcp]
sendmail-whois[name=MySQL, dest=root, sender=fail2ban@example.com]
logpath = /var/log/mysqld.log
maxretry = 5
This program check the mysql logs by its own given pattern and then blocks the IP addresses which they try to login more than 5 times, in iptables.
shgnInc
- 244
- 2
- 14
1
This can be achieved using auditing logon failure event and using triggers for failure event ,Please have a look at the link Audit logins on MySQL database The locking of account may be handling at active directory locking level