You can change the password string to some of the more known ones such as 12345, password123, pass123, god, etc..

select domains.name,domains.id,mail.mail_name,accounts.password from domains,mail,accounts where domains.id=mail.dom_id and accounts.id=mail.account_id and accounts.password='password';

And here is the list all for the passwords.

select CONCAT(mail_name,"@",name) as email_address,accounts.password from mail left join domains on domains.id=mail.dom_id left join accounts on accounts.id=mail.account_id;

Tags:

Categories:

Updated: