Created
November 4, 2013 14:33
-
-
Save siliconmeadow/7303330 to your computer and use it in GitHub Desktop.
To find a Plesk client's password, providing you know their login name.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT clients.login , SUBSTRING(accounts.password, 1) | |
FROM clients, accounts | |
WHERE clients.login LIKE '<loginname>' | |
AND clients.account_id = accounts.id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment