fix quote around special priv Proxy for root on `@%`

This commit is contained in:
Laurent Indermuehle 2023-09-14 14:50:57 +02:00
parent 019a6d89cd
commit 3288c22e64
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -538,7 +538,14 @@ class MySQL_Info(object):
if db_table == '*.*' and priv == 'USAGE':
continue
priv_string.append("'%s': '%s'" % (db_table, ','.join(priv)))
# privileges_get returns "'''@''': 'PROXY,GRANT'". The % is missing
# and there is too many quotes. So we rewrite this.
if priv == ['PROXY', 'GRANT'] and u == 'root':
priv_string.append("'``@`%`: 'PROXY,GRANT'")
continue
unquote_db_table = db_table.replace('`', '').replace("'", '')
priv_string.append("'%s': '%s'" % (unquote_db_table, ','.join(priv)))
self.info['users_privs'][key] = {
'user': u, 'host': h, 'privs': '/'.join(priv_string)}