• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Retreiving domain user passwords

K

Kosta

Guest
Hi!

I am trying to integrate a 3rd party script I made with plesk login. I would like the domain users to use the same password they use for plesk for logging into my application. However, since plesk php files are compiled, I couldn't find where the login_up.php3 page is fetching the user passwords from. I have analyzed the psa database closely and only found passwords for mysql databases and password protected dirs. I'm guessing that domain user passwords are stored in some files then, but I have no idea where that could be. If you could shed some light on this I would be very grateful indeed :)

Thanks in advance!
 
You can do this quite easily from a sql statement just got to link a few tables.

SELECT password FROM dom_level_usrs,domains,accounts WHERE (dom_level_usrs.dom_id=domains.id) AND (dom_level_usrs.account_id=accounts.id) AND (name="DOMAIN.EXT");
 
Hi!

That worked like a dream! Thanks a lot for the query :cool:
 
Back
Top