Merge pull request #570 from sysadmin75/mysql_user_parse_grant

Fix to revoke privileges for mysql user = ''
reviewable/pr18780/r1
Brian Coca 9 years ago
commit fa5a72f40e

@ -292,7 +292,7 @@ def privileges_get(cursor, user,host):
return x return x
for grant in grants: for grant in grants:
res = re.match("GRANT (.+) ON (.+) TO '.+'@'.+'( IDENTIFIED BY PASSWORD '.+')? ?(.*)", grant[0]) res = re.match("GRANT (.+) ON (.+) TO '.*'@'.+'( IDENTIFIED BY PASSWORD '.+')? ?(.*)", grant[0])
if res is None: if res is None:
raise InvalidPrivsError('unable to parse the MySQL grant string: %s' % grant[0]) raise InvalidPrivsError('unable to parse the MySQL grant string: %s' % grant[0])
privileges = res.group(1).split(", ") privileges = res.group(1).split(", ")

Loading…
Cancel
Save