Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Active Directory [closed]

How can i get the password for a user from Active Directory

like image 894
Loganathan Avatar asked Dec 04 '22 15:12

Loganathan


1 Answers

Simple, you cannot. Passwords are not stored in nearly all authentication systems. Instead, they are converted into a 'hash' that is stored instead. Then, when you want to prove that you know the password, you convert the password you type into a hash using the same algorithm and compare that to the stored data.

Some use public/private keys to perform the hashing, some use alternative algorithms. None of them can "un-convert" the hash back into the original password.

like image 105
gbjbaanb Avatar answered Mar 07 '23 17:03

gbjbaanb