Skip to content

Instantly share code, notes, and snippets.

@siliconmeadow
Created November 4, 2013 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siliconmeadow/7303330 to your computer and use it in GitHub Desktop.
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.
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