Re: You're on SecurityFocus.com for the cleartext passwords.

Поиск
Список
Период
Сортировка
От Hannu Krosing
Тема Re: You're on SecurityFocus.com for the cleartext passwords.
Дата
Msg-id 39151719.9BD2DB3A@tm.ee
обсуждение исходный текст
Ответ на Re: You're on SecurityFocus.com for the cleartext passwords.  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: You're on SecurityFocus.com for the cleartext passwords.  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Bruce Momjian wrote:
> 
> Another idea is to add code to 7.1 to convert non-md5 shadow password
> fields to md5 format.  Since we already have special handling to do
> pg_pwd, we could do it there.  Seems like a plan.  MD5 format is all
> hex digits of a specific length.  No way to get that confused with a
> real password.

One way to approach it in a semi-transparent way would be to add a
column md5passwd to pg_shadow and set up a trigger to automatically 
update it whenever passwd is inserted/updated (and for 
security-concious people the same trigger would empty the passwd 
field itself, or set it to some special value that disables 
crypt/cleartext logins)

the WITH ENCRYPTED PASSWORD would then update md5passwd directly, and 
reset the passwd field.

I still think that the easiest way to get unique hashes would be to use 
the username as salt when generating the value for md5passwd .

----------------
Hannu


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Vince Vielhaber
Дата:
Сообщение: Re: So we're in agreement....
Следующее
От: Hannu Krosing
Дата:
Сообщение: Re: So we're in agreement....