• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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