Mercurial > prosody-modules
view mod_limit_auth/README.markdown @ 4525:b68b801ddc50
mod_rest: Restore 'kind' property in JSON-mapped objects
The datamapper schema has no 'kind' field, instead handling it as a
top-level property of the currently unused <xmpp> element and doing this
early dispatch on the top level element name.
This puts the field back into the output JSON.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 23 Mar 2021 17:44:49 +0100 |
parents | 4916c1b6517f |
children |
line wrap: on
line source
--- summary: Throttle authentication attempts with optional tarpit ... Introduction ============ This module lets you put a per-IP limit on the number of failed authentication attempts. It features an optioanal [tarpit](https://en.wikipedia.org/wiki/Tarpit_%28networking%29), i.e. waiting some time before returning an "authentication failed" response. Configuration ============= ``` {.lua} modules_enabled = { -- your other modules "limit_auth"; } limit_auth_period = 30 -- over 30 seconds limit_auth_max = 5 -- tolerate no more than 5 failed attempts -- Will only work with Prosody trunk: limit_auth_tarpit_delay = 10 -- delay answer this long ``` Compatibility ============= Requires 0.9 or later. The tarpit feature requires Prosody trunk.