-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing password is not recognized #412
Comments
Didn't work for me. Edited line 1726 to remove the '' around password and still got the same error. I fiddled around with things and this seemed to work:
|
Still open in 1.7.14. I can confirm daniels post. Removing the two apostrophes surrounding 'password' is working well. |
Modifications made |
Tested and improved on last version. |
It's ok for me now. |
I have the latest version 1.7.13 running on Maria DB 10.1.26-MariaDB-0+deb9u1 .
I noticed that it did not recognize that I have a user which has no password set.
The reason is that the following line of code presents a string "password" rather than the field "password". So the later checks
is null
and= ''
always succeed.Here is a fix that works for me:
Find:
"IF(plugin='mysql_native_password', authentication_string, 'password')";
Replace with:
"IF(plugin='mysql_native_password', authentication_string, password)";
The text was updated successfully, but these errors were encountered: