Pull FTP user/pass off of a linux plesk machine

Log-in to SSH as a super user (e.g. su – ) then get into the mysql prompt

mysql psa -u admin -p`cat /etc/psa/.psa.shadow`

Then run this query

select * from `sys_users` LEFT join `accounts` ON `sys_users`.`account_id`=`accounts`.`id`;

Leave a Comment