Author Topic: How to read cfg_person encrypted password from genesys_ConfigDB c#?  (Read 2239 times)

Offline ahmetsys

  • Newbie
  • *
  • Posts: 9
  • Karma: 0
How to read cfg_person encrypted(hash) password from genesys_ConfigDB c#?


Offline Kubig

  • Hero Member
  • *****
  • Posts: 2739
  • Karma: 44
Re: How to read cfg_person encrypted password from genesys_ConfigDB c#?
« Reply #1 on: October 08, 2019, 05:29:30 PM »
Of course it is not possible to get the decrypted password as it is security issue/thread. As administrator you can change the user's password, but cannot read it.
Genesys certified professional consultant (GVP, SIP, GIR and Troubleshooting)

Offline PeteHoyle

  • Full Member
  • ***
  • Posts: 126
  • Karma: 13
Re: How to read cfg_person encrypted password from genesys_ConfigDB c#?
« Reply #2 on: October 09, 2019, 04:45:43 PM »
You cannot get the decrypted password, what is it you want to do?

If it is to authenticate a User then you can use RequestAuthenticate

Offline hsujdik

  • Hero Member
  • *****
  • Posts: 539
  • Karma: 29
Re: How to read cfg_person encrypted password from genesys_ConfigDB c#?
« Reply #3 on: October 09, 2019, 09:24:53 PM »
The password is not only hashed, but also salted. There’s no way to reverse that

Offline ahmetsys

  • Newbie
  • *
  • Posts: 9
  • Karma: 0
Re: How to read cfg_person encrypted password from genesys_ConfigDB c#?
« Reply #4 on: October 14, 2019, 09:47:41 PM »
Hi Everbody,

Thanks For answers