Обсуждение: Where are password hashes stored?

Поиск
Список
Период
Сортировка

Where are password hashes stored?

От
Ron
Дата:
This is v9.6, if it matters.

I need to send a screenshot of roles and their password hashes, but I can't 
seem to find the relevant table, and Google only shows pages about .pgpass 
and crypto.

Thanks.

-- 
Angular momentum makes the world go 'round.



Re: Where are password hashes stored?

От
Stephen Frost
Дата:
Greetings,

* Ron (ronljohnsonjr@gmail.com) wrote:
> This is v9.6, if it matters.
>
> I need to send a screenshot of roles and their password hashes, but I can't
> seem to find the relevant table, and Google only shows pages about .pgpass
> and crypto.

pg_authid

Thanks,

Stephen

Вложения

Re: Where are password hashes stored?

От
Scott Ribe
Дата:
> On Mar 22, 2021, at 11:59 AM, Ron <ronljohnsonjr@gmail.com> wrote:
>
> This is v9.6, if it matters.
>
> I need to send a screenshot of roles and their password hashes, but I can't seem to find the relevant table, and
Googleonly shows pages about .pgpass and crypto. 
>
> Thanks.

select * from pg_shadow;





Re: Where are password hashes stored?

От
Ron
Дата:
On 3/22/21 1:01 PM, Stephen Frost wrote:
> Greetings,
>
> * Ron (ronljohnsonjr@gmail.com) wrote:
>> This is v9.6, if it matters.
>>
>> I need to send a screenshot of roles and their password hashes, but I can't
>> seem to find the relevant table, and Google only shows pages about .pgpass
>> and crypto.
> pg_authid
>
Thanks.
> Thanks,

>
> Stephen

-- 
Angular momentum makes the world go 'round.