psa.lockout
Overview
The lockout
table contains IP addresses which have had failed Plesk logins.
Column Descriptions
login – login username that was used
last_wrong – when the last login was attempted
attempts – how many attempts were made
Table Structure
CREATE TABLE `lockout` ( `login` varchar(20) character set utf8 NOT NULL default '', `last_wrong` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `attempts` int(11) NOT NULL default '1', PRIMARY KEY (`login`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 |