⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
suite
/
perfschema
/
r
/
View File Name :
global_read_lock.result
use performance_schema; update performance_schema.setup_instruments set enabled='YES'; set @orig_sql_mode= @@sql_mode; set sql_mode= (select replace(@@sql_mode,'NO_AUTO_CREATE_USER','')); Warnings: Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release. grant SELECT, UPDATE, LOCK TABLES on performance_schema.* to pfsuser@localhost; Warnings: Warning 1287 Using GRANT for creating new user is deprecated and will be removed in future release. Create new user with CREATE USER statement. set sql_mode= @orig_sql_mode; Warnings: Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release. flush privileges; connect (con1, localhost, pfsuser, , test); lock tables performance_schema.setup_instruments read; select * from performance_schema.setup_instruments; unlock tables; lock tables performance_schema.setup_instruments write; update performance_schema.setup_instruments set enabled='NO'; update performance_schema.setup_instruments set enabled='YES'; unlock tables; connection default; flush tables with read lock; connection con1; lock tables performance_schema.setup_instruments read; select * from performance_schema.setup_instruments; unlock tables; lock tables performance_schema.setup_instruments write; connection default; select event_name, left(source, locate(":", source)) as short_source, if(timer_end IS NULL, NULL, "SET") as timer_end, if(timer_wait IS NULL, NULL, "SET") as timer_wait, operation from performance_schema.events_waits_current where event_name like "wait/synch/cond/sql/MDL_context::COND_wait_status"; event_name short_source timer_end timer_wait operation wait/synch/cond/sql/MDL_context::COND_wait_status SET SET timed_wait unlock tables; update performance_schema.setup_instruments set enabled='NO'; update performance_schema.setup_instruments set enabled='YES'; unlock tables; connection default; drop user pfsuser@localhost; flush privileges;