Move authenticate to end, remove isBanned()
parent
3e52400d52
commit
b91e7aa171
27
defense.php
27
defense.php
|
@ -206,17 +206,6 @@ class defense extends rcube_plugin {
|
|||
return $content
|
||||
}
|
||||
|
||||
/**
|
||||
* Hooked function: authenticate($host, $user, $cookiecheck, $valid)
|
||||
* Login attempt intercepted if IP is banned.
|
||||
*
|
||||
* @param var (untouched)
|
||||
* @return var (untouched)
|
||||
*/
|
||||
public function hookAuthenticate($args) {
|
||||
return $args;
|
||||
}
|
||||
|
||||
/**
|
||||
* Hooked function: login_failed($host, $user, $code)
|
||||
* Log event to database
|
||||
|
@ -281,18 +270,18 @@ class defense extends rcube_plugin {
|
|||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Return true if logs indicate given IP is banned
|
||||
* Hooked function: authenticate($host, $user, $cookiecheck, $valid)
|
||||
* Login attempt intercepted if IP is banned.
|
||||
*
|
||||
* @param string ip
|
||||
* @return bool
|
||||
*
|
||||
* @param var (untouched)
|
||||
* @return var (untouched)
|
||||
*/
|
||||
public function isBanned($ip) {
|
||||
$query = "SELECT count(id) FROM " . $this->db_table . " WHERE ip = ? AND ";
|
||||
public function hookAuthenticate($args) {
|
||||
return $args;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue