Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 52.14.238.102
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
mysql /
mysql-test /
suite /
opt_trace /
t /
[ HOME SHELL ]
Name
Size
Permission
Action
bugs_no_prot_all.test
610
B
-rw-r--r--
bugs_no_prot_none.test
1.79
KB
-rw-r--r--
bugs_ps_prot_all.test
607
B
-rw-r--r--
bugs_ps_prot_none.test
718
B
-rw-r--r--
charset.test
2.19
KB
-rw-r--r--
debug.test
1010
B
-rw-r--r--
eq_range_statistics.test
3.28
KB
-rw-r--r--
filesort_pack-master.opt
21
B
-rw-r--r--
filesort_pack.test
14.06
KB
-rw-r--r--
filesort_pq-master.opt
21
B
-rw-r--r--
filesort_pq.test
242
B
-rw-r--r--
fulltext.test
875
B
-rw-r--r--
general2_no_prot.test
271
B
-rw-r--r--
general2_ps_prot.test
268
B
-rw-r--r--
general_no_prot_all-master.opt
21
B
-rw-r--r--
general_no_prot_all.test
638
B
-rw-r--r--
general_no_prot_none-master.op...
21
B
-rw-r--r--
general_no_prot_none.test
749
B
-rw-r--r--
general_ps_prot_all.test
635
B
-rw-r--r--
general_ps_prot_none.test
746
B
-rw-r--r--
range_no_prot.test
1.51
KB
-rw-r--r--
range_ps_prot.test
264
B
-rw-r--r--
security_no_prot.test
202
B
-rw-r--r--
security_ps_prot.test
199
B
-rw-r--r--
subquery_no_prot-master.opt
21
B
-rw-r--r--
subquery_no_prot.test
271
B
-rw-r--r--
subquery_ps_prot.test
268
B
-rw-r--r--
temp_table.test
2.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : charset.test
# Check that non-utf8 characters are ok --source include/have_optimizer_trace.inc --source include/have_innodb_16k.inc # --ps-protocol gives different trace where view # has already been materialized if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`) { --skip Need normal protocol } set @@session.end_markers_in_json=on; set @@session.optimizer_trace="enabled=on"; create table t1(a int); insert into t1 values(1); # test non-utf8 chars in the SELECT list set names latin1; # The 5 'A's below are, in this file's bytes, written in latin1 # encoding: xC1C2C4C4C5. We send them as latin1; the server interprets # them as characters using latin1, then encodes those characters in # utf8 in the trace; sends back the trace but re-encodes it in latin1 # (as this is how we want it, see "set names latin1". explain extended select '�����', _latin1'�����' from t1 limit 1; select (@query:=QUERY)+NULL, (@trace:=TRACE)+NULL from information_schema.OPTIMIZER_TRACE; select @query, @trace; # The trace above is not valid JSON because the client asked to # receive it encoded in latin1, whereas JSON wants it in utf8. # Let's get it in utf8. set names utf8; select @query, @trace; # test non-utf8 chars in a view's definition set names latin1; create view v1 as select '�����' as col from t1 limit 1; select * from v1 where v1.col = '�����'; select (@query:=QUERY)+NULL, (@trace:=TRACE)+NULL from information_schema.OPTIMIZER_TRACE; set names utf8; select @query, @trace; drop table t1; drop view v1; # test non-ASCII chars in a range set names latin1; create table t1(c char(4) primary key); insert into t1 values ('aaa'), ('����'); select * from t1 where c < '�����'; select (@query:=QUERY)+NULL, (@trace:=TRACE)+NULL from information_schema.OPTIMIZER_TRACE; set names utf8; select @query, @trace; drop table t1; # test newline and tabulation chars in an identifier create table `t 1 a`(`col 1 a` int, index `index 1 a` (`col 1 a`)); insert into `t 1 a` values(2),(3); create view `v 1 a` as select * from `t 1 a`; select `col 1 a` from `v 1 a` where `col 1 a` < 6; select query, trace from information_schema.OPTIMIZER_TRACE; drop table `t 1 a`; drop view `v 1 a`; set optimizer_trace=default;
Close