Re: chkpass Major Issue - compares 'contains' and not 'equal'

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: chkpass Major Issue - compares 'contains' and not 'equal'
Дата
Msg-id 18834.1528380894@sss.pgh.pa.us
обсуждение исходный текст
Ответ на chkpass Major Issue - compares 'contains' and not 'equal'  (Eyedia Tech <eyedia@debjyoti.com>)
Список pgsql-bugs
Eyedia Tech <eyedia@debjyoti.com> writes:
> To replicate use this:
> create table "user" (uname text, password chkpass);
> insert into "user" values ('user1', 'password')
> select * from "user" where uname = 'user1' and password = 'password1'

That would depend on the behavior of your local version of crypt(3),
but historically, that library function uses only the first eight
characters of the password, which explains this example.

> This is a major issue.

We're not going to treat it as such.  It's clearly documented, see

https://www.postgresql.org/docs/current/static/chkpass.html

FWIW, chkpass is deprecated and has been removed entirely as of PG 11.
It has a lot of design problems above and beyond its reliance on a
40-year-old encryption spec.

            regards, tom lane


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

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: chkpass Major Issue - compares 'contains' and not 'equal'
Следующее
От: PG Bug reporting form
Дата:
Сообщение: BUG #15232: Query execution changes based on using 'explain analyze'or not