First page Back Continue Last page Image

A SELECT statement that finds all users with no password

SELECT Host, User

FROM mysql.user

WHERE authentication_string = ''

One of the main security problems you will encounter is with users who are not using any security and if you want to find who they are you can use this...

This query should return a list of all your slackers