To summarize Jens' scheme into a pseudo state transition diagramdiagram/rulebase:
- user + password -> entry
- user + !password -> denied
- user + known_IP(user) -> front door,
// never throttle - user + unknown_IP(user) -> catflap
- (#denied > n) via catflaps(site) -> throttle catflaps(site)
// slow the bots - catflap + throttle + password + captcha -> entry
// humans still welcome - catflap + throttle + password + !captcha -> denied
// a correct guess from a bot
Observations:
- Never throttle the front door. The Elbonian state police have your computer, in your house, but are unable to interrogate you. Brute force is a viable approach from your computer.
- If you provide a "Forgetten your password?" link, then your email account becomes part of the attach attack surface.
These observations cover a different type of attack to the ones you are trying to counter.
