Grab Plesk FTP account passwords


/ Published in: SQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. SELECT REPLACE(sys_users.home,'/home/httpd/vhosts/','') AS DOMAIN,
  2. sys_users.login,accounts.password FROM sys_users
  3. LEFT JOIN accounts ON sys_users.account_id=accounts.id
  4. ORDER BY sys_users.home ASC;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.