How do I decrypt the password of a user? What is the command used for decrypting the encrypted password to normal one?
After entering into postgreSQL database and typing:
postgres=# select * from pg_shadow;
We will be getting the below listed fields..
i am a super user of the database..
password field shows :md5f0101924b02 603efac6788bb7f 096638 as encrypted password in Message Digest 5 algorithm...
After entering into postgreSQL database and typing:
postgres=# select * from pg_shadow;
We will be getting the below listed fields..
i am a super user of the database..
password field shows :md5f0101924b02 603efac6788bb7f 096638 as encrypted password in Message Digest 5 algorithm...
Code:
usename|usesysid|usecreatedb|usesuper|usecatupd |passwd|valuntil|useconfig ---------+----------+-------------+----------+-----------+-------------------------------------+-------------- hyd | 10 | t | t | t | md5f0101924b02603efac6788bb7f096638 |
Comment