-1

I have a list of user accounts with passwords in different formats (Binary 11, Binary 3, Binary 33). When I export as ldif, it has all encrypted passwords. I want all passwords as plain text. (As I can see in ldap). Can I have plain passwords in exported file?

Rohail Abbas
  • 449
  • 1
  • 5
  • 18

1 Answers1

0

I doub it. When you export as LDIF, it has all hashed passwords. Not encrypted. You can't decrypt a hash. You can't get the plaintext. You don't want the plaintext. See here for why not.

Review your requirement.

Community
  • 1
  • 1
user207421
  • 289,834
  • 37
  • 266
  • 440
  • They aren't hashed, they are encrypted Base 64. I can even decrypt them. I can get plain password through ldap too. But in export, they are encrypted. I understand why should not I want plain text. But this is it. – Rohail Abbas Jun 15 '16 at 11:06