Re: contrib: auth_delay module - Mailing list pgsql-hackers

From Itagaki Takahiro
Subject Re: contrib: auth_delay module
Date
Msg-id AANLkTi=4zU0obJJedk7OgVPc0QxymKZs+zKB5yQy4nJx@mail.gmail.com
Whole thread Raw
In response to contrib: auth_delay module  (KaiGai Kohei <kaigai@kaigai.gr.jp>)
Responses Re: contrib: auth_delay module
Re: contrib: auth_delay module
List pgsql-hackers
2010/11/4 KaiGai Kohei <kaigai@kaigai.gr.jp>:
> The attached patch is a contrib module to inject a few seconds
> delay on authentication failed. It is also a proof of the concept
> using the new ClientAuthentication_hook.
>
> This module provides a similar feature to pam_faildelay on
> operating systems. Injection of a few seconds delay on
> authentication fails prevents (or makes hard at least) brute-force
> attacks, because it limits number of candidates that attacker can
> verify within a unit of time.

+1 for the feature.  We have "post_auth_delay" parameter,
but it has different purpose; it's as DEVELOPER_OPTIONS
for delay to attach a debugger.

BTW, the module could save CPU usage of the server on attacks,
but do nothing about connection flood attacks, right?
If an attacker attacks the server with multiple connections,
the server still consumes max_connections even with the module.

-- 
Itagaki Takahiro


pgsql-hackers by date:

Previous
From: KaiGai Kohei
Date:
Subject: contrib: auth_delay module
Next
From: Robert Haas
Date:
Subject: Re: contrib: auth_delay module