Re: retrieving information about password from MS Access front-end
В списке pgsql-interfaces по дате отправления:
| От | Volkan YAZICI |
|---|---|
| Тема | Re: retrieving information about password from MS Access front-end |
| Дата | |
| Msg-id | 7104a737050612234734ffc2a5@mail.gmail.com обсуждение исходный текст |
| Ответ на | retrieving information about password from MS Access front-end (Zlatko Matić <zlatko.matic1@sb.t-com.hr>) |
| Список | pgsql-interfaces |
Hi, On 6/13/05, Zlatko Matić <zlatko.matic1@sb.t-com.hr> wrote: > I want to create VBA procedure that compares value in text box with actual > password to determine if it is the same. As the password is encrypted (md5) > I can't read it from pg_shaddow system table. How to retrieve decrypted > value from pg_shaddow? It's (practically) impossible to decrypt a MD5 hashed password. > Or at least, how to transfer value from text-box (MS Access) to Postgres > so that Postgres can determine whether those two values > are the same ? You need to MD5 hash the input passsword and compare hashed input password with the one in pg_shadow. For instance: -- $1 for password input. SELECT usernm FROM recs WHERE passwd = md5($1) Furthermore, it'll bring some potential security problems to be able to access pg_shadow which requires db admin permissions. Regards.
В списке pgsql-interfaces по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера