Updated Working with Rulesets (markdown)

master
sorcerykid 2018-09-03 22:52:01 -05:00
parent eb80c114aa
commit ee4965c150
1 changed files with 12 additions and 6 deletions

View File

@ -439,12 +439,18 @@ The AuthWatchdog class monitors all login activity on the basis of IP address, t
Six meta-variables are provided by the Watchdog class with state-based information specific to the IP address:
$ip_prelogin - the timestamp of the last attempted login
$ip_oldcheck - the timestamp of the first failed login
$ip_newcheck - the timestamp of the last failed login
$ip_failures - the current number of failed logins
$ip_attempts - the current number of attempted logins
$ip_names_list - list of assumed usernames in chronological order
* **$ip_prelogin**
the timestamp of the last attempted login
* **$ip_oldcheck**
the timestamp of the first failed login
* **$ip_newcheck**
the timestamp of the last failed login
* **$ip_failures**
the current number of failed logins
* **$ip_attempts**
the current number of attempted logins
* **$ip_names_list**
list of assumed usernames in chronological order
All meta-variables are persistent until the user successfully logs into the sever, at which point they are reset. If the server is restarted, they will be reset as well (since they are non-essential).