show tables from mysql like 'user'; #show create table mysql.user; drop table mysql.user; select current_user(); create table test.very_important_table( id int not null primary key, credit_card_num char(16), credit_card_owner varchar(256), credit_card_expire_month char(2), credit_card_expire_year char(2), credit_card_cvv char(3)) engine=innodb; insert into test.very_important_table values(1, '1234123412341234', 'Sveta Smirnova', '02', '20', '123'); --echo "Restarting MySQL server" --source include/restart_mysqld.inc --echo "MySQL restarted" show tables from mysql like 'user'; select current_user(); connect(we_will_crack_you,localhost,foo,bar,test); connection we_will_crack_you; select current_user(); select * from test.very_important_table; drop table test.very_important_table;