298 B
298 B
MySQL madness!
Wordpress's IP is configured to 172.26.0.2
Do the MySQL!
select host, user, password from mysql.user order by user;
create user 'arvuhez'@'172.26.0.2' identified by 'kjhs';
grant all on arvuhez.* to 'arvuhez'@'172.26.0.2';
show grants for 'arvuhez'@'172.26.0.2';